Submission #257447

# Submission time Handle Problem Language Result Execution time Memory
257447 2020-08-04T09:26:03 Z BThero Xoractive (IZhO19_xoractive) C++17
6 / 100
0 ms 256 KB
// chrono::system_clock::now().time_since_epoch().count()
#include<bits/stdc++.h>
#include "interactive.h"

#define pb push_back
#define eb emplace_back
#define mp make_pair
#define fi first
#define se second
#define all(x) (x).begin(), (x).end()
#define debug(x) cerr << #x << " = " << x << endl;

using namespace std;

typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;

vi guess(int n) {
  vi ans;
  
  for (int i = 1; i <= n; ++i) {
    ans.pb(ask(i));
  }
  
  return ans;
}

# Verdict Execution time Memory Grader output
1 Correct 0 ms 256 KB Output is correct
2 Correct 0 ms 256 KB Output is correct
3 Correct 0 ms 256 KB Output is correct
4 Correct 0 ms 256 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -