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<math.h>
int main(){
	int d1,d2,h1,h2,m1,m2;
	int t1,t2;
	int flag=0;
	scanf("%d %d %d",&d1,&h1,&m1);
	scanf("%d %d %d",&d2,&h2,&m2);
	if(abs(d1-d2)==0){
		printf("Y e s\n");
		goto aa;
	}
	bb:;
	if(d2-d1==1){
		if(h1>h2){
			printf("Y e s\n");
			goto aa;
		}
		else if(h1==h2&&m1>=m2){
			printf("Y e s\n");
			goto aa;
		}
	}
	else if(d2==1){
		d2+=7;
		goto bb;
	}
	printf("N o\n");
	aa:;
}