Submission #22192

# Submission time Handle Problem Language Result Execution time Memory
22192 2017-04-29T15:56:58 Z 느그팀(#1034, ainta) None (KRIII5P_1) C++
7 / 7
3 ms 1116 KB
#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

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 time Memory Grader output
1 Correct 3 ms 1116 KB Output is correct