Submission #313630

# Submission time Handle Problem Language Result Execution time Memory
313630 2020-10-16T12:33:41 Z baibhav26062008 Combo (IOI18_combo) C++14
0 / 100
0 ms 200 KB
#include "combo.h"
#include <bits/stdc++.h>

using namespace std;

string guess_sequence(int N)
{
 int x = 4;
 string all = "ABXY";
 string s(N,'A');
 for(int i=0;i<N;i++)
 {
  bool found=false;
  for(int j=0;j<x;j++)
  {
    if (found) break;
    s[i] = all[j];
    cout << press(s) << endl;
    if (press(s)-1 == i)
    {
      found = true;
      break;
    }
    else
        continue;
  }
 }
 return s;
}
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 200 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 200 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -