QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#139486 | #1. I/O Test | Fr1nGeLove | Compile Error | / | / | C++ | 316b | 2023-08-13 18:07:19 | 2023-08-13 18:07:22 |
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
3
1 2 3
output_test
1 2 3
详细
Invalid Configuration File: failed to read Nin and Nout