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: 6ms
Memory: 1092kB
In contest: 1258

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
int main(){
	int w1,w2,h1,h2,m1,m2;
	int mul;
	scanf("%d%d%d",&w1,&h1,&m1);
	scanf("%d%d%d",&w2,&h2,&m2);
	if(w1==w2){
		printf("Y e s");
	}
	else{
		if(w1==7&&w2==1||w2-w1==1){
			mul=60*h2+m2+(24*60-60*h1-m1);
			if(mul<=24*60)
				printf("Y e s");
			else
				printf("N o");
		}
		else
			printf("N o");
	}
}