QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#139487 | #1. I/O Test | Fr1nGeLove | Compile Error | / | / | C++ | 696b | 2023-08-13 18:08:14 | 2023-08-13 18:08:15 |
Judging History
config.txt
#include <bits/stdc++.h> using i64 = long long; int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; std::cin >> n; for (int i = 0; i < n; i++) { int x; std::cin >> x; std::cout << x << " "; } return 0; }
input_test
#include <bits/stdc++.h>
using i64 = long long;
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout << "3\n";
std::cout << "1 2 3 \n";
return 0;
}
output_test
#include <bits/stdc++.h>
using i64 = long long;
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout << "1 2 3 \n";
return 0;
}
詳細信息
Invalid Configuration File: failed to read Nin and Nout