QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#349956#6727. K-hour Clockwudibaolong#WA 22ms3644kbC++14354b2024-03-10 10:04:212024-03-10 10:04:22

Judging History

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

  • [2024-03-10 10:04:22]
  • 评测
  • 测评结果:WA
  • 用时:22ms
  • 内存:3644kb
  • [2024-03-10 10:04:21]
  • 提交

answer

#include <bits/stdc++.h>
#define int long long
using namespace std;

void solve() {
	int x, y, z;
	cin >> x >> y >> z;
	int ans = x + y - z;
	if (ans >= 1 && ans <= 2e9 && ans > x) cout << ans << '\n';
	else cout << "-1\n";
}

signed main() {
	ios::sync_with_stdio(false), cin.tie(nullptr);
	int t = 1;
	cin >> t;
	while (t--) solve();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

4
11 18 5
3 49 4
1 9 1
1 3 10

output:

24
48
9
-1

result:

ok 4 cases

Test #2:

score: -100
Wrong Answer
time: 22ms
memory: 3644kb

input:

100000
186826504 580942638 34507146
409013320 825277663 642758065
221040339 32805624 253845963
759538401 529610463 314034771
591738614 223935926 591499221
272890462 257036262 529926724
644722795 540369561 79342760
141738127 915104743 658190166
378771709 735410115 474472687
550207480 676282297 233056...

output:

733261996
591532918
-1
975114093
-1
-1
1105749596
398652704
639709137
1203184138
-1
1057591501
-1
847965981
-1
-1
-1
1229562136
797923156
-1
-1
-1
913981025
-1
-1
-1
1345234741
-1
1053306920
-1
-1
-1
-1
-1
-1
326906843
-1
-1
-1
-1
-1
133120806
241058758
1450926252
-1
-1
-1
-1
-1
-1
1068580042
489254...

result:

wrong answer Case #2: k <= z (x = 409013320, y = 825277663, z = 642758065, k = 591532918)