QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#765296 | #9546. Recover Statistics | yuanruiqi# | WA | 0ms | 3584kb | C++14 | 364b | 2024-11-20 13:44:10 | 2024-11-20 13:44:11 |
Judging History
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]