제출 #257447

#제출 시각아이디문제언어결과실행 시간메모리
257447BTheroXoractive (IZhO19_xoractive)C++17
6 / 100
0 ms256 KiB
// 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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...