QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#722439#9579. 比分幻术oqmsacAC ✓0ms3696kbC++23515b2024-11-07 19:03:312024-11-07 19:03:32

Judging History

This is the latest submission verdict.

  • [2024-11-07 19:03:32]
  • Judged
  • Verdict: AC
  • Time: 0ms
  • Memory: 3696kb
  • [2024-11-07 19:03:31]
  • Submitted

answer

#include<bits/stdc++.h>
#define ll  long long
#define ull unsigned long long
#define ld long double
#define pii pair<ll,ll>
using namespace std;
//#pragma GCC optimize(3)
const ll inf =(1ll<<50);
#define N 1000005
#define M 998244353
#define M1 1000000007
#define M2 1000000009
char ss[5000010];
int main()
{
   ios::sync_with_stdio(0);
   cin.tie(0);
   cout.tie(0);
    ll a,b;
    cin>>a>>b;
    b=-b;
    swap(a,b);
    cout<<a<<'-'<<b<<endl;

    return 0;
}
//1 5
//32 32 15 15 15

这程序好像有点Bug,我给组数据试试?

详细

Test #1:

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

input:

2-3

output:

3-2

result:

ok single line: '3-2'

Test #2:

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

input:

8-1

output:

1-8

result:

ok single line: '1-8'

Test #3:

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

input:

6-6

output:

6-6

result:

ok single line: '6-6'

Test #4:

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

input:

0-0

output:

0-0

result:

ok single line: '0-0'

Test #5:

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

input:

9-0

output:

0-9

result:

ok single line: '0-9'

Test #6:

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

input:

3-7

output:

7-3

result:

ok single line: '7-3'

Test #7:

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

input:

5-9

output:

9-5

result:

ok single line: '9-5'

Test #8:

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

input:

0-4

output:

4-0

result:

ok single line: '4-0'

Test #9:

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

input:

9-9

output:

9-9

result:

ok single line: '9-9'

Test #10:

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

input:

0-9

output:

9-0

result:

ok single line: '9-0'

Extra Test:

score: 0
Extra Test Passed