# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
364111 | 2021-02-08T08:59:15 Z | ahmedfouadnew | CONSUL (info1cup19_consul) | C++17 | 848 ms | 380 KB |
#include "grader.h" //#include "grader.cpp" #include<bits/stdc++.h> using namespace std; #define pb push_back void solve(int n) { vector<int>v; for(int i=1;i<=n;i++) { v.pb(kth(i)); } sort(v.begin(),v.end()); int cur=0; for(int i=0;i<v.size();i++) { if(!i) { cur=1; } else { if(v[i]==v[i-1]) { cur++; } else cur=1; } if(cur>n/3) { say_answer(v[i]); break; } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 39 ms | 364 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 66 ms | 364 KB | Output is partially correct |
2 | Partially correct | 84 ms | 364 KB | Output is partially correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 848 ms | 380 KB | Output is partially correct |
2 | Halted | 0 ms | 0 KB | - |