• 문제 링크
https://www.acmicpc.net/problem/7782
• 풀이 코드
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
public class Main {
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
boolean b = false;
int n = read(), b1 = read(), b2 = read();
while (!b && n-- > 0) b = read() <= b1 && read() <= b2 && b1 <= read() && b2 <= read();
bw.write(b ? "Yes" : "No");
bw.flush();
}
private static int read() throws IOException {
int c, n = System.in.read() & 15;
boolean flag = n == 13;
if (flag) n = System.in.read() & 15;
while ((c = System.in.read()) > 32) n = (n << 3) + (n << 1) + (c & 15);
return flag ? ~n + 1 : n;
}
}
'Problem Solving > Baekjoon' 카테고리의 다른 글
[백준] 19751 Fractification - Brute Force / Java (0) | 2024.12.02 |
---|---|
[백준] 15429 Odd Gnome - Brute Force / Java (0) | 2024.12.01 |
[백준] 30063 Pabėgimo kambarys - Data Structure / Java (0) | 2024.11.29 |
[백준] 4126 Course Scheduling - Data Structure / Java (0) | 2024.11.28 |
[백준] 7640 Matryoshka Dolls - Data Structure / Java (0) | 2024.11.27 |
댓글