QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#383703 | #6747. Permutation | Teiosama# | Compile Error | / | / | C++17 | 163b | 2024-04-09 16:53:10 | 2024-04-09 16:53:10 |
Judging History
answer
#include<bits/stdc++.h>
#include<unordered_map>
#include<list>
using namespace std;
int main()
long long ans = 0;
{for(int i = 1;i<1e10;i++)
ans+=1;
}
详细
answer.code:6:9: error: expected initializer before ‘long’ 6 | long long ans = 0; | ^~~~ answer.code:7:1: error: expected unqualified-id before ‘{’ token 7 | {for(int i = 1;i<1e10;i++) | ^