Submission #22192

#TimeUsernameProblemLanguageResultExecution timeMemory
22192느그팀 (#42)시간과 날짜 (KRIII5P_1)C++98
7 / 7
3 ms1116 KiB
#include<cstdio> int w[13]={-1,31,29,31,30,31,30,31,31,30,31,30,31}; int main(){ int a, b, TC; scanf("%d",&TC); while(TC--){ scanf("%d%d",&a,&b); if(a>=24 || b>=60)printf("No "); else printf("Yes "); if(a>=13 || w[a]<b || b==0)printf("No\n"); else printf("Yes\n"); } }

Compilation message (stderr)

td.cpp: In function 'int main()':
td.cpp:5:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d",&TC);
                    ^
td.cpp:7:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d",&a,&b);
                        ^
#Verdict Execution timeMemoryGrader output
Fetching results...