QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#282768#1. I/O Testucup-team17690 513ms3460kbC++20404b2023-12-13 01:10:122023-12-13 01:10:13

Judging History

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

  • [2023-12-13 01:10:13]
  • 评测
  • 测评结果:0
  • 用时:513ms
  • 内存:3460kb
  • [2023-12-13 01:10:12]
  • 提交

config.txt

10000000 10000000

input_test

#include <bits/stdc++.h>

int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
	for (int i = 0; i < 10000000; i++) {
		int x;
		std::cin >> x;
	}
}

output_test

#include <bits/stdc++.h>

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

詳細信息

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 513ms
memory: 3404kb

input:

10000000
881213623 471535725 323772419 691538689 260075269 574711747 149072808 478004352 437830634 582706347 983400803 811583588 752518922 126496536 974834113 201503434 549375534 828724035 333007039 700615884 463841942 341251660 556869335 113734869 705320667 632198379 622452732 511453864 930587027 2...

output:


result:

wrong output format Unexpected end of file - int64 expected

Subtask #2:

score: 0
Wrong Answer

Test #2:

score: 0
Wrong Answer
time: 431ms
memory: 3460kb

input:

10000000

output:

10000000 10000001 10000002 10000003 10000004 10000005 10000006 10000007 10000008 10000009 10000010 10000011 10000012 10000013 10000014 10000015 10000016 10000017 10000018 10000019 10000020 10000021 10000022 10000023 10000024 10000025 10000026 10000027 10000028 10000029 10000030 10000031 10000032 100...

result:

wrong answer Integer 10000000 violates the range [10^8, 999999999]