QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#745434 | #9546. Recover Statistics | KDream | WA | 0ms | 3544kb | C++20 | 584b | 2024-11-14 09:57:07 | 2024-11-14 09:57:07 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
void _Z()
{
int a, b, c;
cin >> a >> b >> c;
cout << "100" << "\n";
for (int i = 1;i <= 50;i ++)
{
cout << a << " ";
}
for (int i = 51;i <= 98;i ++)
{
cout << b << " ";
}
for (int i = 99;i <= 99;i ++)
{
cout << c << " ";
}
cout << c + 1;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t = 1;
// cin >> t;
while (t--)
{
_Z();
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3544kb
input:
50 95 99
output:
100 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 95 95 95 99...
result:
wrong answer wrong p95: 98 / 100