QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#92492 | #1. I/O Test | SnowNorth | Compile Error | / | / | C++14 | 382b | 2023-03-30 17:19:25 | 2023-03-30 17:19:28 |
Judging History
你现在查看的是最新测评结果
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2023-03-30 17:19:28]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2023-03-30 17:19:25]
- 提交
config.txt
input_test
output_test
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll C (ll n, ll m) {
ll ret(1);
for (ll i = m, j = 1; j <= n; j++, i--)
ret = ret * i / j;
return ret;
}
void solve() {
int n = 1e8;
for (int i = 1; i <= n; i++)
cout << i << ' ';
}
signed main() {
ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
solve();
return 0;
}
Details
Invalid Configuration File: failed to read Nin and Nout