QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#373088#7779. Swiss Stageacidlemon#WA 1ms3632kbC++17155b2024-04-01 02:11:312024-04-01 02:11:32

Judging History

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

  • [2024-04-01 02:11:32]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3632kb
  • [2024-04-01 02:11:31]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

int main() {
    int x, y;
    cin >> x >> y;
    cout << max(y + 3 - x, 0) << endl;
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

0 1

output:

4

result:

ok 1 number(s): "4"

Test #2:

score: 0
Accepted
time: 1ms
memory: 3544kb

input:

1 2

output:

4

result:

ok 1 number(s): "4"

Test #3:

score: -100
Wrong Answer
time: 0ms
memory: 3592kb

input:

0 0

output:

3

result:

wrong answer 1st numbers differ - expected: '4', found: '3'