Submission #718711

# Submission time Handle Problem Language Result Execution time Memory
718711 2023-04-04T14:39:10 Z simon2712 CONSUL (info1cup19_consul) C++14
0 / 100
1 ms 336 KB
#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;
    for(i=1;i<=25;i++)
    {
        val=(val*69)%N+1;
        x=kth(val);
        if(cnt(x)>N/3){
            say_answer(x);
            break;
        }
    }
    say_answer(-1);
}

# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 336 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 208 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 208 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -