답안 #718711

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
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);
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -