QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#715837#9546. Recover StatisticsDepletedPrism#WA 0ms3644kbC++17970b2024-11-06 13:32:102024-11-06 13:32:12

Judging History

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

  • [2024-11-06 13:32:12]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3644kb
  • [2024-11-06 13:32:10]
  • 提交

answer

/*
* @Author: zxxzy
* @Date:   2023-11-28 15:06:53
*/
#include <iostream>
#include <algorithm>
#include <cstring>
#include <bitset>
#include <set>
#include <cmath>
#include <vector>
#include <map>
//#define int long long
#define space ' '
#define endl '\n'
#define de(x) cout<<"** "<<x<<" **"<<endl;
#define N 200005
using namespace std;
using ll=long long;
const int mod=998244353;
const int INF=0x3f3f3f3f;
const double eps=1e-6;


signed main(){
    #ifdef LOCAL
        freopen("D:\\code2023\\test\\input.txt", "r", stdin);
        freopen("D:\\code2023\\test\\output.txt", "w", stdout);
    #endif
    std::ios::sync_with_stdio(false);
    cin.tie(0);
    int x,y,z;
    cin>>x>>y>>z;
    cout<<100<<endl;
    for(int i=1;i<=50;i++){
        cout<<x<<space;
    }
    for(int i=51;i<=95;i++){
        cout<<y<<space;
    }
    for(int i=96;i<=100;i++){
        cout<<z<<space;
    }
    cout<<endl;

    return 0;
}


詳細信息

Test #1:

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

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