QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#712586#9546. Recover Statisticsstarry#WA 0ms3660kbC++201.0kb2024-11-05 16:17:062024-11-05 16:17:06

Judging History

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

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

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[3];
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]+100<<'\n';
    return 0;
}


Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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 199

result:

wrong output format Unexpected end of file - int32 expected