QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#712600#9546. Recover Statisticsstarry#WA 0ms3592kbC++201.0kb2024-11-05 16:19:542024-11-05 16:19:54

Judging History

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

  • [2024-11-05 16:19:54]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3592kb
  • [2024-11-05 16:19:54]
  • 提交

answer

#include <bits/stdc++.h>
/*
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/hash_policy.hpp>
*/
using namespace std;

const double eps = 1e-10;
const double pi = 3.1415926535897932384626433832795;
const double eln = 2.718281828459045235360287471352;

#define f(i, a, b) for (int i = a; i <= b; i++)
#define scan(x) scanf("%d", &x)
#define mp make_pair
#define pb push_back
#define lowbit(x) (x&(-x))

#define fi first
#define se second
#define SZ(x) int((x).size())
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define summ(a) (accumulate(all(a), 0ll))

typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef vector<int> vi;

using ll=long long;

ll a[40];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    f(i,1,3)cin>>a[i];
    cout<<"100\n";
    for(int i=1;i<=50;++i){
    	cout<<a[1]<<" ";
    }
    for(int i=1;i<=45;++i){
    	cout<<a[2]<<" ";
    }
    for(int i=1;i<4;++i){
    	cout<<a[3]<<" ";
    }
    cout<<a[3]+1;
    return 0;
}


详细

Test #1:

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

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 100

result:

wrong output format Unexpected end of file - int32 expected