#include <bits/stdc++.h>
#include <grader.h>
using namespace std;
int kth(int i);
int cnt(int x);
void say_answer(int a);
void solve(int N)
{
int i,val=1,x;
bool ok=false;
for(i=1;i<=25 && !ok;i++)
{
val=(val*69)%N+1;
x=kth(val);
if(cnt(x)>N/3){
say_answer(x);
ok=true;
}
}
if(!ok)
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
208 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
9 ms |
208 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
208 KB |
Output is correct |
2 |
Correct |
22 ms |
208 KB |
Output is correct |
3 |
Incorrect |
2 ms |
208 KB |
Wrong answer |
4 |
Halted |
0 ms |
0 KB |
- |