Submission #1019850

#TimeUsernameProblemLanguageResultExecution timeMemory
1019850vjudge1Detecting Molecules (IOI16_molecules)C++17
Compilation error
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(); } }

Compilation message (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