Submission #1007725

#TimeUsernameProblemLanguageResultExecution timeMemory
1007725uranhishigParrots (IOI11_parrots)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include "encoder.h" #include "encoderlib.h" void encode(int N, int M[]) { for( int i=0; i<N; i++){ if(M[i] == 1){ send(i); } } }
#include <bits/stdc++.h> #include "decoder.h" #include "decoderlib.h" using namespace std; void decode(int N, int L, int X[]) { int w[N] {}; for(i=0; i<L; i++) { for(int i = 0; i < L; i++){ w[X[i]] = 1; } for(int i=0; i<N; i++){ output(w[i]); } } }

Compilation message (stderr)

decoder.cpp: In function 'void decode(int, int, int*)':
decoder.cpp:8:7: error: 'i' was not declared in this scope
    8 |   for(i=0; i<L; i++) {
      |       ^