QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#765296#9546. Recover Statisticsyuanruiqi#WA 0ms3584kbC++14364b2024-11-20 13:44:102024-11-20 13:44:11

Judging History

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

  • [2024-11-20 13:44:11]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3584kb
  • [2024-11-20 13:44:10]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    int a, b, c;
    cin >> a >> b >> c;
    for (int i=1;i<=50;++i) cout << a << ' ';
    for (int i=51;i<=95;++i) cout << b << ' ';
    for (int i=96;i<=99;++i) cout << c << ' ';
    cout << c + 1 << '\n';
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3584kb

input:

50
95
99

output:

50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 99 99 99 99 100

result:

wrong answer Integer parameter [name=n] equals to 50, violates the range [100, 100000]