# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
22196 | 내일 시험이에요 (#42) | 시간과 날짜 (KRIII5P_1) | C++11 | 3 ms | 1116 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cstdlib>
int days[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int leap(int y){
return y%400?1:y%100?0:y%4?1:0;
}
int month(int x){
return 1<=x && x<=12;
}
int day(int y, int x){
if(!month(y))return 0;
int d = days[y];
if(y==2)d+=leap(y);
return 1<=x && x<=d;
}
int hour(int x){
return 0<=x && x<24;
}
int minute(int x){
return 0<=x && x<60;
}
int time(int h, int m){
return hour(h) && minute(m);
}
int main(){
int n;
scanf("%d",&n);
for(int i=0;i<n;i++){
int a,b;
scanf("%d%d",&a,&b);
printf("%s %s\n",time(a,b)?"Yes":"No", day(a,b)?"Yes":"No");
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |