QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#279819 | #7779. Swiss Stage | ucup-team1631# | AC ✓ | 1ms | 3548kb | C++20 | 481b | 2023-12-09 10:09:43 | 2023-12-09 10:09:44 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int main() {
int X,Y;
cin>>X>>Y;
if(X==0){
if(Y==0)cout<<4<<endl;
else if(Y==1)cout<<4<<endl;
else if(Y==2)cout<<6<<endl;
}
else if(X==1){
if(Y==0)cout<<3<<endl;
else if(Y==1)cout<<3<<endl;
else if(Y==2)cout<<4<<endl;
}
else if(X==2){
if(Y==0)cout<<2<<endl;
else if(Y==1)cout<<2<<endl;
else cout<<2<<endl;
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3304kb
input:
0 1
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3376kb
input:
1 2
output:
4
result:
ok 1 number(s): "4"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3364kb
input:
0 0
output:
4
result:
ok 1 number(s): "4"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3372kb
input:
0 2
output:
6
result:
ok 1 number(s): "6"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
1 0
output:
3
result:
ok 1 number(s): "3"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3472kb
input:
1 1
output:
3
result:
ok 1 number(s): "3"
Test #7:
score: 0
Accepted
time: 1ms
memory: 3368kb
input:
2 0
output:
2
result:
ok 1 number(s): "2"
Test #8:
score: 0
Accepted
time: 0ms
memory: 3476kb
input:
2 1
output:
2
result:
ok 1 number(s): "2"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3368kb
input:
2 2
output:
2
result:
ok 1 number(s): "2"
Extra Test:
score: 0
Extra Test Passed