QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#234966 | #7062. Prince and Princess | neko | WA | 1ms | 3692kb | C++14 | 384b | 2023-11-02 09:37:08 | 2023-11-02 09:37:09 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int f, t, a;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
cin >> f >> t >> a;
if (abs(f - t) <= a) {
cout << "NO" << endl;
return 0;
}
cout << "YES" << endl;
cout << 2 * (min(f, t) + a) + 1 << endl;
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3672kb
input:
2 0 0
output:
YES 1
result:
ok 2 lines
Test #2:
score: 0
Accepted
time: 1ms
memory: 3692kb
input:
1 1 0
output:
NO
result:
ok single line: 'NO'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3692kb
input:
89586 69086 24655
output:
NO
result:
ok single line: 'NO'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
158180 57864 93937
output:
YES 303603
result:
ok 2 lines
Test #5:
score: 0
Accepted
time: 0ms
memory: 3684kb
input:
51497 19791 57294
output:
NO
result:
ok single line: 'NO'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3692kb
input:
37924 72502 88364
output:
NO
result:
ok single line: 'NO'
Test #7:
score: -100
Wrong Answer
time: 0ms
memory: 3692kb
input:
38506 50719 9243
output:
YES 95499
result:
wrong answer 1st lines differ - expected: 'NO', found: 'YES'