QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#418485#6696. Three Dicemzx123WA 0ms3716kbC++14689b2024-05-23 14:12:272024-05-23 14:12:29

Judging History

你现在查看的是最新测评结果

  • [2024-05-23 14:12:29]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3716kb
  • [2024-05-23 14:12:27]
  • 提交

answer

//int lcm(long long a, long long b) {
//    return a / __gcd(a, b) * b;
//}

#include <bits/stdc++.h>
using namespace std;
int main(){
	/*
	红色:1(1),2(2),3(3),4(1),5(2),6(3),9(3),12(3)
	黑色:(1)2,3,5,6
		  (2)5,7,8,9,11
		  (3)10,14,13,11 
	*/
	int r,b;
	cin>>r>>b;
	if(r==1||r==4){
		if(b==5||b==7||b==8||b==9||b==11) cout<<"Yes";
		else cout<<"No";
	}
	else if(r==2||r==5){
		if(b==2||b==3||b==5||b==6) cout<<"Yes";
		else cout<<"No";
	}
	else if(r==3||r==6||r==9||r==12){
		if(b==0) cout<<"Yes";
		else cout<<"No";
	}
	else if(r==0){
		if(b==10||b==14||b==13||b==11) cout<<"Yes";
		else cout<<"No";
	}
	else cout<<"No";
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3624kb

input:

4 5

output:

Yes

result:

ok answer is YES

Test #2:

score: 0
Accepted
time: 0ms
memory: 3532kb

input:

3 0

output:

Yes

result:

ok answer is YES

Test #3:

score: 0
Accepted
time: 0ms
memory: 3716kb

input:

1 2

output:

No

result:

ok answer is NO

Test #4:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

0 0

output:

No

result:

ok answer is NO

Test #5:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

0 1

output:

No

result:

ok answer is NO

Test #6:

score: 0
Accepted
time: 0ms
memory: 3536kb

input:

0 2

output:

No

result:

ok answer is NO

Test #7:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

0 3

output:

No

result:

ok answer is NO

Test #8:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

0 4

output:

No

result:

ok answer is NO

Test #9:

score: 0
Accepted
time: 0ms
memory: 3716kb

input:

0 5

output:

No

result:

ok answer is NO

Test #10:

score: -100
Wrong Answer
time: 0ms
memory: 3532kb

input:

0 6

output:

No

result:

wrong answer expected YES, found NO