Submission #101223

#TimeUsernameProblemLanguageResultExecution timeMemory
101223Leonardo_PaesHacker (BOI15_hac)C++11
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; const int MAXN = 1e5+10; int vet[MAXN]; int main(){ int n, k, resp=0x3f3f3f3f; cin >> n; k = ceil((double)n/2); for(int i=1; i<=n; i++){ cin >> vet[i]; } for(int i=1; i<=k; i++){ int u=i, x=1, sum=0; while(x<=k){ac sum+=vet[i]; u--; x++; if(u==0)u=n; } resp=min(resp,sum); } cout << resp << endl; }

Compilation message (stderr)

hac.cpp: In function 'int main()':
hac.cpp:23:21: error: 'ac' was not declared in this scope
         while(x<=k){ac
                     ^~