Submission #384618

# Submission time Handle Problem Language Result Execution time Memory
384618 2021-04-01T22:31:02 Z fadi57 CONSUL (info1cup19_consul) C++14
0 / 100
14 ms 364 KB
//#include "grader.cpp"
#include<bits/stdc++.h>
#include "grader.h"

using namespace std;

void solve(int n)
{
    map<int,int>mp;
    /// insert your code
    /// for example
    double z=n/3;
    int ok=0;
    int mid=n/2;
    int ans;
    for(int i=1;i<=mid;i++){
           // int me=kth(i);
           // mp[me]++;
           int myfreq=cnt(i);
        if(myfreq>(n/3)){
                ok=1;
          ans=kth(i);
            break;
        }
    }
    if(ok==0){
      for(int i=mid+1;i<=n;i++){
           // int me=kth(i);
           // mp[me]++;
           int myfreq=cnt(i);
        if(myfreq>(n/3)){
                ok=1;
             ans=kth(i);
            break;
        }
    }

    } if(!ok){say_answer(-1);}else{say_answer(ans);}




}

Compilation message

consul.cpp: In function 'void solve(int)':
consul.cpp:12:12: warning: unused variable 'z' [-Wunused-variable]
   12 |     double z=n/3;
      |            ^
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 364 KB Wrong answer
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 364 KB Wrong answer
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 364 KB Wrong answer
2 Halted 0 ms 0 KB -