QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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;
}
詳細信息
Invalid Configuration File: failed to read Nin and Nout