Start: Jan, 08, 2019 19:01:00
2018年秋季学期程序设计基础(C语言)期末考试
End: Jan, 08, 2019 21:46:00
Time elapsed:
Time remaining:

Problem_ID: F
Result: Accepted
Time: 5ms
Memory: 1092kB
In contest: 1258

#include<stdio.h>
#include<math.h>
int main(){
	int a,b,c,d,e,f,t1,t2;
	scanf("%d %d %d %d %d %d",&a,&b,&c,&d,&e,&f);
	t1=b*60+c;
	t2=e*60+f;
	if(a==d){
	printf("Y e s\n");
	}
	else if(d==(a+1)){
		    if((t2-t1)<=0)
			printf("Y e s\n");
	        else printf("N o\n");
	}
	else if(a==7&&d==1){
		if((t2-t1)<=0)
			printf("Y e s\n");
       else printf("N o\n");
	}
	else  printf("N o\n");
	return 0;
}