QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#812331 | #9579. 比分幻术 | wiki | AC ✓ | 0ms | 3856kb | C++14 | 420b | 2024-12-13 14:17:30 | 2024-12-13 14:17:31 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int N=2e5+20;
inline int read()
{
int k=0,f=1;
char ch=getchar();
while(ch<'0' || ch>'9'){if(ch=='-') f=-1;ch=getchar();}
while(ch>='0' && ch<='9'){k=(k<<1)+(k<<3)+ch-'0';ch=getchar();}
return f*k;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
int a,b;
scanf("%d-%d",&a,&b);
cout<<b<<'-'<<a;
return 0;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3836kb
input:
2-3
output:
3-2
result:
ok single line: '3-2'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3856kb
input:
8-1
output:
1-8
result:
ok single line: '1-8'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3788kb
input:
6-6
output:
6-6
result:
ok single line: '6-6'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3696kb
input:
0-0
output:
0-0
result:
ok single line: '0-0'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3716kb
input:
9-0
output:
0-9
result:
ok single line: '0-9'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3652kb
input:
3-7
output:
7-3
result:
ok single line: '7-3'
Test #7:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
5-9
output:
9-5
result:
ok single line: '9-5'
Test #8:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
0-4
output:
4-0
result:
ok single line: '4-0'
Test #9:
score: 0
Accepted
time: 0ms
memory: 3788kb
input:
9-9
output:
9-9
result:
ok single line: '9-9'
Test #10:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
0-9
output:
9-0
result:
ok single line: '9-0'
Extra Test:
score: 0
Extra Test Passed