QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#110882#2004. Crocodile's Underground Citythenymphsofdelphi#Compile Error//C++201.1kb2023-06-04 15:20:242024-05-31 13:55:47

Judging History

This is the latest submission verdict.

  • [2024-05-31 13:55:47]
  • Judged
  • [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