728x90
반응형
https://www.acmicpc.net/problem/28454
제가 좋아하지 않는 분류 중 하나인 날짜 관련해서 문제를 출제해봤습니다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] s = br.readLine().split("-");
int y = Integer.parseInt(s[0]), m = Integer.parseInt(s[1]), d = Integer.parseInt(s[2]);
int n = Integer.parseInt(br.readLine());
int answer = 0;
for(int i = 0; i < n; i++) {
String[] str = br.readLine().split("-");
int gifty = Integer.parseInt(str[0]), giftm = Integer.parseInt(str[1]), giftd = Integer.parseInt(str[2]);
if(gifty > y) {
answer++;
}
else if(gifty == y) {
if(giftm > m) {
answer++;
}
else if(giftm == m && giftd >= d) {
answer++;
}
}
}
System.out.print(answer);
}
}
728x90
반응형
'백준 > 출제한 문제들' 카테고리의 다른 글
[백준] 29730번 : 임스의 데일리 인증 스터디 (0) | 2023.09.16 |
---|---|
[백준] 28455번 : Union Maplestory (0) | 2023.08.21 |
[백준] 28453번 : Previous Level (0) | 2023.08.21 |
[백준] 26068번 : 치킨댄스를 추는 곰곰이를 본 임스 2 (0) | 2022.12.01 |
[백준] 25822번 : 2000문제 푼 임스 (3) | 2022.10.25 |
댓글