제출 #1019850

#제출 시각아이디문제언어결과실행 시간메모리
1019850vjudge1Detecting Molecules (IOI16_molecules)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> //#define int long long using namespace std; vector <int> find_subset(int l, int u, vector <int> w) { if (l%w[0]==0) { return w; } else { return {}; } } signed main() { int t; cin >> t; while(t--) { //solve(); } }

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

/usr/bin/ld: /tmp/ccQcgvVE.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccpli9zE.o:molecules.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status