QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#282769#1. I/O Testucup-team1769100 426ms3580kbC++20465b2023-12-13 01:12:102023-12-13 01:12:11

Judging History

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

  • [2023-12-13 01:12:11]
  • 评测
  • 测评结果:100
  • 用时:426ms
  • 内存:3580kb
  • [2023-12-13 01:12:10]
  • 提交

config.txt

10000000 10000000

input_test

#include <bits/stdc++.h>

int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);

	i64 ans = 0;
	for (int i = 0; i < 10000000; i++) {
		int x;
		std::cin >> x;
		ans += x;
	}

	std::cout << ans << "\n";
}

output_test

#include <bits/stdc++.h>

int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
	int x = 100000000;
	for (int i = 0; i < 10000000; i++) {
		std::cout << x + i << " \n"[i == 999999];
	}
}

详细

Subtask #1:

score: 0
input_test Judgement Failed

Test #1:

score: 0
input_test Judgement Failed

input:

10000000
788242533 684958054 356023701 870673385 741649539 105509578 905424984 265471690 505790199 314280644 965832444 288388987 717806881 581382545 162057350 684643757 221216562 365287863 403399154 923865064 892768341 375717279 686159417 278408181 431996569 947351751 710189245 355733531 797725157 5...

output:


result:


Subtask #2:

score: 100
Accepted

Test #2:

score: 100
Accepted
time: 426ms
memory: 3580kb

input:

10000000

output:

100000000 100000001 100000002 100000003 100000004 100000005 100000006 100000007 100000008 100000009 100000010 100000011 100000012 100000013 100000014 100000015 100000016 100000017 100000018 100000019 100000020 100000021 100000022 100000023 100000024 100000025 100000026 100000027 100000028 100000029 ...

result:

points 1.0 output test passed