QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#712638#9546. Recover StatisticsWolam#WA 0ms3620kbC++20395b2024-11-05 16:28:222024-11-05 16:28:23

Judging History

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

  • [2024-11-05 16:28:23]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3620kb
  • [2024-11-05 16:28:22]
  • 提交

answer

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

详细

Test #1:

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

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 99 99 99...

result:

wrong answer wrong p95: 96 / 100