제출 #339550

#제출 시각아이디문제언어결과실행 시간메모리
339550fixikmilaXoractive (IZhO19_xoractive)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> 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; } int []guess(int n){ ll a[4]; a[0]=ask(1); a[1]=ask(2); a[2]=ask(3); a[3]=ask(4); return a; }

컴파일 시 표준 에러 (stderr) 메시지

Xoractive.cpp:15:5: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   15 | int []guess(int n){
      |     ^
Xoractive.cpp:15:5: error: structured binding declaration cannot have type 'int'
   15 | int []guess(int n){
      |     ^~
Xoractive.cpp:15:5: note: type must be cv-qualified 'auto' or reference to cv-qualified 'auto'
Xoractive.cpp:15:5: error: empty structured binding declaration
Xoractive.cpp:15:7: error: expected initializer before 'guess'
   15 | int []guess(int n){
      |       ^~~~~