QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#766804#9546. Recover Statisticsyld#WA 0ms3644kbC++20385b2024-11-20 18:41:122024-11-20 18:41:16

Judging History

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

  • [2024-11-20 18:41:16]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3644kb
  • [2024-11-20 18:41:12]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
#define endl '\n'
using namespace std;
void solve()
{
    int a,b,c;
    cin>>a>>b>>c;
    cout<<100<<endl;
    for(int i=1;i<=50;i++) cout<<a-1<<' ';
    for(int i=51;i<=99;i++) cout<<b-1<<' ';
    cout<<c<<endl;
}
signed main()
{
    cin.tie(0)->sync_with_stdio(0);
    int t=1;
    while(t--) solve();
    return 0;
}

詳細信息

Test #1:

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

input:

50
95
99

output:

100
49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94 94...

result:

wrong answer wrong p95: 99 / 100