Submission #384603

#TimeUsernameProblemLanguageResultExecution timeMemory
384603fadi57CONSUL (info1cup19_consul)C++14
Compilation error
0 ms0 KiB
#include "grader.cpp" #include<bits/stdc++.h> using namespace std; void solve(int n) { map<int,int>mp; /// insert your code /// for example int z=n/3; int ok=0; for(int i=1;i<=n;i++){ int me=kth(i); mp[me]++; if(mp[me]>z){ ok=1; say_answer(me); break; } }if(!ok){say_answer(-1);} }

Compilation message (stderr)

/tmp/ccg0w2YI.o: In function `kth(int)':
grader.cpp:(.text+0x0): multiple definition of `kth(int)'
/tmp/ccfvDpH7.o:consul.cpp:(.text+0x0): first defined here
/tmp/ccg0w2YI.o: In function `cnt(int)':
grader.cpp:(.text+0xb0): multiple definition of `cnt(int)'
/tmp/ccfvDpH7.o:consul.cpp:(.text+0xb0): first defined here
/tmp/ccg0w2YI.o: In function `say_answer(int)':
grader.cpp:(.text+0x160): multiple definition of `say_answer(int)'
/tmp/ccfvDpH7.o:consul.cpp:(.text+0x160): first defined here
/tmp/ccg0w2YI.o: In function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'
/tmp/ccfvDpH7.o:consul.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status