QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#32134#1. I/O TestRcX9GLlqXIOSDECompile Error//C++23462b2022-05-17 19:48:342022-05-18 04:29:44

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-05-18 04:29:44]
  • 评测
  • [2022-05-17 19:48:34]
  • 提交

config.txt

123456

input_test

#include <bits/stdc++.h>

using namespace std;

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cout.tie(nullptr);
	int n, x; long long sum = 0;
	cin >> n;
	while (n--) {
		cin >> x;
		sum += x;
	}
}

output_test

#include <bits/stdc++.h>

using namespace std;

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cout.tie(nullptr);
	int n, x; long long sum = 0;
	cin >> n;
	while (n--) {
		cout << "123456789\n";
	}
}

Details

Invalid Configuration File: failed to read Nin and Nout