Submission #645349

#TimeUsernameProblemLanguageResultExecution timeMemory
645349notmeCONSUL (info1cup19_consul)C++14
0 / 100
1 ms208 KiB
#include<bits/stdc++.h>
#define endl '\n'
#include "grader.h"
using namespace std;


void solve(int N)
{
    for (int i = 1; i <= N; ++ i)
    {
        long long num = kth(i);
        long long times = cnt(num);
        if(num > N/3)
        {
            say_answer(num);
            return;
        }
    }
    say_answer(-1);
}

Compilation message (stderr)

consul.cpp: In function 'void solve(int)':
consul.cpp:12:19: warning: unused variable 'times' [-Wunused-variable]
   12 |         long long times = cnt(num);
      |                   ^~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...