QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#499439 | #6727. K-hour Clock | buzhijingdi | WA | 24ms | 3696kb | C++14 | 589b | 2024-07-31 14:15:21 | 2024-07-31 14:15:22 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int N = 2e5 + 9;
const int mod = 1e9 + 7;
#define eps 1e-5
#define inf 2e18
ll a, b, c;
void solve()
{
cin >> a >> b >> c;
ll k = a + b - c;
if (k < 0)
{
cout << "-1" << '\n';
return;
}
else if (k == 0) {
cout << a + b + 1 << endl;
}
else {
cout << k << '\n';
}
}
int main()
{
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int _ = 1; cin >> _;
while (_--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3628kb
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: 24ms
memory: 3696kb
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 253845964 975114093 224175319 529926725 1105749596 398652704 639709137 1203184138 317612555 1057591501 673441983 847965981 -1 4320427 643543523 1229562136 797923156 233325064 488183711 524483170 913981025 347546858 611749282 -1 1345234741 862956524 1053306920 248241206 -1 4100331...
result:
wrong answer Case #2: k <= z (x = 409013320, y = 825277663, z = 642758065, k = 591532918)