QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#234976 | #7062. Prince and Princess | neko | WA | 0ms | 3396kb | C++14 | 476b | 2023-11-02 09:46:18 | 2023-11-02 09:46:18 |
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 >> t >> f >> a;
if (abs(f - t) <= a) {
cout << "NO" << endl;
return 0;
}
if(!(t>a&&t>f)||!(t<a&&t<f)){
cout << "NO" << endl;
return 0;
}
cout << "YES" << endl;
cout << 2 * (min(f, t) + a) + 1 << endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3396kb
input:
2 0 0
output:
NO
result:
wrong answer 1st lines differ - expected: 'YES', found: 'NO'