QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#418504 | #6696. Three Dice | mzx123 | WA | 1ms | 3724kb | C++14 | 745b | 2024-05-23 14:16:43 | 2024-05-23 14:16:44 |
Judging History
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