QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#720535#9546. Recover Statistics中国入民小学附属信息I队 (Zicheng Wang, Shubang Liu, Minkai Shao)#WA 1ms3644kbC++14384b2024-11-07 13:11:222024-11-07 13:11:23

Judging History

This is the latest submission verdict.

  • [2024-11-07 13:11:23]
  • Judged
  • Verdict: WA
  • Time: 1ms
  • Memory: 3644kb
  • [2024-11-07 13:11:22]
  • Submitted

answer

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

int a, b, c;

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	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 = 95; i <= 99; i++) {
		cout << c << ' ';
	}
	cout << (int)1e9 << '\n';

	return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 1ms
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