QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#745434#9546. Recover StatisticsKDreamWA 0ms3544kbC++20584b2024-11-14 09:57:072024-11-14 09:57:07

Judging History

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

  • [2024-11-14 09:57:07]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3544kb
  • [2024-11-14 09:57:07]
  • 提交

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