Submission #910170

#TimeUsernameProblemLanguageResultExecution timeMemory
910170kachuCoreputer (IOI23_coreputer)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #include "coreputer.h" using namespace std; using namespace __gnu_pbds; #define oset tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> #define ofind find_by_order #define okey order_of_key #define pque priority_queue #define dque deque #define que queue #define umap unordered_map #define uset unordered_set #define pipii pair<int, pair<int,int>> #define pii pair<int,int> #define mp make_pair #define pb push_back #define ppb pop_back #define pf push_front #define ppf pop_front #define iter iterator #define endl '\n' #define MOD 1000000007 #define INF 1e18 int[] malfunctioning_cores(int N){ int ans[N]; memset(ans, 0, sizeof ans); if (N != 2) return ans; int query[1] = {0}; int res = run_diagnostic(query); if (res == 1) ans[0] = 1; else if (res == -1) ans[1] = 1; else{ ans[0] = 1; ans[1] = 1; } return ans; }

Compilation message (stderr)

coreputer.cpp:30:4: error: structured binding declaration cannot have type 'int'
   30 | int[] malfunctioning_cores(int N){
      |    ^~
coreputer.cpp:30:4: note: type must be cv-qualified 'auto' or reference to cv-qualified 'auto'
coreputer.cpp:30:4: error: empty structured binding declaration
coreputer.cpp:30:7: error: expected initializer before 'malfunctioning_cores'
   30 | int[] malfunctioning_cores(int N){
      |       ^~~~~~~~~~~~~~~~~~~~