| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1234633 | Solikha | CONSUL (info1cup19_consul) | C++20 | 211 ms | 424 KiB |
#include "grader.h"
#include "bits/stdc++.h"
using namespace std;
void solve(int n)
{
map<int, int> mp;
for(int i = 1; i <= n; i++){
int x = kth(i);
mp[x]++;
}
for(auto [x, y] : mp){
if(y > n / 3){
say_answer(x); return;
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
