제출 #1180912

#제출 시각아이디문제언어결과실행 시간메모리
1180912timkaA + B (IOI24_aplusb)C++20
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> #define int long long using namespace std; const int mod = 1e9 + 7; const int inf = 1e18; void solve() { int a,b; cin >> a >> b; cout << a+b; } signed main() { ios_base::sync_with_stdio(false); cin.tie(0); int t = 1; // cin >> t; while (t--) { solve(); cout << "\n"; } return 0; } /* n=6 6 3 5 2 4 1 n=5 1 5 3 */

컴파일 시 표준 에러 (stderr) 메시지

/usr/bin/ld: /tmp/ccQPUEJ6.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccefRCJS.o:aplusb.cpp:(.text.startup+0x0): first defined here
/usr/bin/ld: /tmp/ccQPUEJ6.o: in function `main':
grader.cpp:(.text.startup+0x160): undefined reference to `sum(int, int)'
collect2: error: ld returned 1 exit status