Submission #339558

#TimeUsernameProblemLanguageResultExecution timeMemory
339558fixikmilaXoractive (IZhO19_xoractive)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include<interactive.h> #include<grader.cpp> using namespace std; #define MOD 1000000007 typedef long long ll; typedef pair<ll,ll>pll; typedef long double ld; ll bin_pow(ll a,ll b){ if(b==0)return 1; if(b%2==0){ ll t=bin_pow(a,b/2); return t*t%MOD; } else return a*bin_pow(a,b-1)%MOD; } vector<int> guess(int n){ vector<ll>a(4); a[0]=ask(1); a[1]=ask(2); a[2]=ask(3); a[3]=ask(4); return a; }

Compilation message (stderr)

Xoractive.cpp: In function 'std::vector<int> guess(int)':
Xoractive.cpp:24:12: error: could not convert 'a' from 'vector<long long int>' to 'vector<int>'
   24 |     return a;
      |            ^
      |            |
      |            vector<long long int>