Submission #246731

#TimeUsernameProblemLanguageResultExecution timeMemory
246731SomeoneUnknownCONSUL (info1cup19_consul)C++14
100 / 100
37 ms432 KiB
#include <bits/stdc++.h> #include "grader.h" using namespace std; void solve(int n) { /// insert your code /// for example int polls = 54; int fchecks = 6; vector<int> surveyres; if(n <= 60){ for(int i = 1; i <= n; i++){ surveyres.push_back(kth(i)); } sort(surveyres.begin(), surveyres.end()); int prv = 0; int amt = 0; for(int i = 0; i < n; i++){ if(prv != surveyres[i]){ prv = surveyres[i]; amt = 0; } ++amt; if(amt * 3 > n){ say_answer(prv); return; } } say_answer(-1); return; } }

Compilation message (stderr)

consul.cpp: In function 'void solve(int)':
consul.cpp:8:9: warning: unused variable 'polls' [-Wunused-variable]
     int polls = 54;
         ^~~~~
consul.cpp:9:9: warning: unused variable 'fchecks' [-Wunused-variable]
     int fchecks = 6;
         ^~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...