QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#713005#9546. Recover StatisticsMu_Silk#WA 0ms3636kbC++20426b2024-11-05 17:46:172024-11-05 17:46:17

Judging History

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

  • [2024-11-05 17:46:17]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3636kb
  • [2024-11-05 17:46:17]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

void solve(){
    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<=95;i++)cout<<b<<" ";
    for(int i=96;i<=100;i++)cout<<c<<" ";
    cout<<"\n";
}

int main(){
    ios::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    int n=1;
    //cin>>n;
    while(n--)solve();
    return 0;
}

詳細信息

Test #1:

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

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

result:

wrong answer wrong p99: 100 / 100