QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#623890#7062. Prince and Princessbright_ml#AC ✓0ms3708kbC++20557b2024-10-09 14:19:272024-10-09 14:19:27

Judging History

你现在查看的是最新测评结果

  • [2024-10-09 14:19:27]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3708kb
  • [2024-10-09 14:19:27]
  • 提交

answer

//
// Created by 35395 on 2024/10/9.
//
#include<bits/stdc++.h>
using namespace std;
#define int long long

void solve() {
    int a, b, c;
    cin >> a >> b >> c;
    if(a + b + c == 1) {
        cout << "YES\n0\n";
        return;
    }
    if(a > b + c) {
        cout << "YES\n";
        cout << (b + c) * 2 + 1 << '\n';
    } else {
        cout << "NO\n";
    }
}

signed main() {
    ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    int T = 1;
//    cin >> T;
    while(T--) {
        solve();
    }
    return 0;
}

这程序好像有点Bug,我给组数据试试?

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3584kb

input:

2 0 0

output:

YES
1

result:

ok 2 lines

Test #2:

score: 0
Accepted
time: 0ms
memory: 3652kb

input:

1 1 0

output:

NO

result:

ok single line: 'NO'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3580kb

input:

89586 69086 24655

output:

NO

result:

ok single line: 'NO'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3640kb

input:

158180 57864 93937

output:

YES
303603

result:

ok 2 lines

Test #5:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

51497 19791 57294

output:

NO

result:

ok single line: 'NO'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3576kb

input:

37924 72502 88364

output:

NO

result:

ok single line: 'NO'

Test #7:

score: 0
Accepted
time: 0ms
memory: 3708kb

input:

38506 50719 9243

output:

NO

result:

ok single line: 'NO'

Test #8:

score: 0
Accepted
time: 0ms
memory: 3700kb

input:

44623 66300 29302

output:

NO

result:

ok single line: 'NO'

Test #9:

score: 0
Accepted
time: 0ms
memory: 3644kb

input:

164851 97868 94938

output:

NO

result:

ok single line: 'NO'

Test #10:

score: 0
Accepted
time: 0ms
memory: 3644kb

input:

163100 62397 99567

output:

YES
323929

result:

ok 2 lines

Test #11:

score: 0
Accepted
time: 0ms
memory: 3576kb

input:

180210 69137 35332

output:

YES
208939

result:

ok 2 lines

Test #12:

score: 0
Accepted
time: 0ms
memory: 3572kb

input:

108374 4656 91320

output:

YES
191953

result:

ok 2 lines

Test #13:

score: 0
Accepted
time: 0ms
memory: 3644kb

input:

1 0 0

output:

YES
0

result:

ok 2 lines

Test #14:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

10 0 0

output:

YES
1

result:

ok 2 lines

Extra Test:

score: 0
Extra Test Passed