| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 523464 | Farhan_HY | CONSUL (info1cup19_consul) | C++14 | 27 ms | 212 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
map<int, bool> mp;
void solve(int n)
{
mp.clear();
srand(0);
int q = 60;
int i = 0;
while(q--)
{
// int i = rand() % n + 1;
i++;
if (i > n)
break;
int x = kth(i);
if(mp[x])
continue;
mp[x] = 1;
int Count = cnt(x);
if (Count > n / 3)
{
say_answer(x);
return;
}
}
say_answer(-1);
/// insert your code
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
