QOJ.ac
QOJ
ID | 提交记录ID | 题目 | Hacker | Owner | 结果 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|
#570 | #234982 | #7062. Prince and Princess | 111445 | neko | Success! | 2024-03-10 21:15:14 | 2024-03-10 21:15:15 |
详细
Extra Test:
Wrong Answer
time: 0ms
memory: 3688kb
input:
1 5 2
output:
YES 7
result:
wrong answer 1st lines differ - expected: 'NO', found: 'YES'
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#234982 | #7062. Prince and Princess | neko | WA | 0ms | 3692kb | C++14 | 584b | 2023-11-02 09:50:08 | 2024-03-10 21:15:22 |
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(t+f+a == 1){
cout << "YES" << endl;
cout << 0 << endl;
return 0;
}
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;
}