QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#418504#6696. Three Dicemzx123WA 1ms3724kbC++14745b2024-05-23 14:16:432024-05-23 14:16:44

Judging History

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

  • [2024-05-23 14:16:44]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3724kb
  • [2024-05-23 14:16:43]
  • 提交

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,4(1),2,8,5(2),3,6,9,12(3)
	黑色:(1)2,3,5,6
		  (2)5,7,8,9,11  4 6 10 12
		  (3)10,14,13,11  6 9 15 18
	*/
	int r,b;
	cin>>r>>b;
	if(r==1||r==4){
		if(b==5||b==7||b==8||b==9||b==11||b==4||b==6||b==10||b==12) cout<<"Yes";
		else cout<<"No";
	}
	else if(r==2||r==5||r==8){
		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||b==6||b==9||b==15||b==18) 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: 1ms
memory: 3564kb

input:

4 5

output:

Yes

result:

ok answer is YES

Test #2:

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

input:

3 0

output:

Yes

result:

ok answer is YES

Test #3:

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

input:

1 2

output:

No

result:

ok answer is NO

Test #4:

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

input:

0 0

output:

No

result:

ok answer is NO

Test #5:

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

input:

0 1

output:

No

result:

ok answer is NO

Test #6:

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

input:

0 2

output:

No

result:

ok answer is NO

Test #7:

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

input:

0 3

output:

No

result:

ok answer is NO

Test #8:

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

input:

0 4

output:

No

result:

ok answer is NO

Test #9:

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

input:

0 5

output:

No

result:

ok answer is NO

Test #10:

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

input:

0 6

output:

Yes

result:

ok answer is YES

Test #11:

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

input:

0 7

output:

No

result:

wrong answer expected YES, found NO