QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#724937#9546. Recover StatisticsxsdgpWA 0ms3656kbC++20434b2024-11-08 15:36:382024-11-08 15:36:38

Judging History

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

  • [2024-11-08 15:36:38]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3656kb
  • [2024-11-08 15:36:38]
  • 提交

answer

#include<bits/stdc++.h>
#define endl '\n'
#define int long long
using namespace std;
int a,b,c;
void solve()
{
	cin>>a>>b>>c;
	cout<<100<<endl;
	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<<' ';
}
signed main()
{
	ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
	int T=1;
	//cin>>T;
	while(T--)solve();
	return 0;
}
/*
50
95
99
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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