QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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;
}
详细
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'