https://www.acmicpc.net/problem/25377
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
StringTokenizer st;
int minTime = Integer.MAX_VALUE;
boolean success = false;
for (int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
if (b >= a) {
if (minTime > b) {
minTime = b;
success = true;
}
}
}
System.out.println(success ? minTime : -1);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 25494 단순한 문제 (Small) (0) | 2022.12.10 |
---|---|
백준 25628 햄버거 만들기 (0) | 2022.12.10 |
백준 25591 푸앙이와 종윤이 (0) | 2022.12.10 |
백준 25625 샤틀버스 (0) | 2022.12.09 |
백준 25640 MBTI (0) | 2022.12.09 |