QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#110882 | #2004. Crocodile's Underground City | thenymphsofdelphi# | Compile Error | / | / | C++20 | 1.1kb | 2023-06-04 15:20:24 | 2024-05-31 13:55:47 |
Judging History
This is the latest submission verdict.
- [2024-05-31 13:55:47]
- Judged
- Verdict: Compile Error
- Time: 0ms
- Memory: 0kb
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2023-06-04 15:20:24]
- Submitted
answer
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define fi first
#define se second
#define For(i, l, r) for (auto i = (l); i < (r); i++)
#define ForE(i, l, r) for (auto i = (l); i <= (r); i++)
#define FordE(i, l, r) for (auto i = (l); i >= (r); i--)
#define Fora(v, a) for (auto v: (a))
#define bend(a) (a).begin(), (a).end()
#define isz(a) ((signed)(a).size())
using ll = long long;
using ld = long double;
using pii = pair <int, int>;
using vi = vector <int>;
using vpii = vector <pii>;
using vvi = vector <vi>;
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
// freopen("KEK.inp", "r", stdin);
// freopen("KEK.out", "w", stdout);
}
/*
==================================================+
INPUT |
--------------------------------------------------|
--------------------------------------------------|
==================================================+
OUTPUT |
--------------------------------------------------|
--------------------------------------------------|
==================================================+
*/
詳細信息
/usr/bin/ld: /tmp/ccc4JlBo.o: in function `main': answer.code:(.text.startup+0x0): multiple definition of `main'; /tmp/ccjhQYRo.o:implementer.cpp:(.text.startup+0x0): first defined here /usr/bin/ld: /tmp/ccjhQYRo.o: in function `main': implementer.cpp:(.text.startup+0x36): undefined reference to `travel_plan(int, int, int (*) [2], int*, int, int*)' collect2: error: ld returned 1 exit status