Submission #793857

#TimeUsernameProblemLanguageResultExecution timeMemory
793857t6twotwoParrots (IOI11_parrots)C++17
Compilation error
0 ms0 KiB
#include "encoder.h"
#include "encoderlib.h"
#include <bits/stdc++.h>
using namespace std;
void encode(int N, int M[]) {
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < 8; j++) {
            if (M[i] >> j & 1) {
                send(i * 8 + j):
            }
        }
    }
}
#include "decoder.h"
#include "decoderlib.h"
#include <bits/stdc++.h>
using namespace std;
void decode(int N, int L, int X[]) {
    int a[N]{};
    for (int i = 0; i < L; i++) {
        a[X[i] / 8] += 1 << (X[i] % 8);
    }
    for (int i = 0; i < N; i++) {
        output(a[i]);
    }
}

Compilation message (stderr)

encoder.cpp: In function 'void encode(int, int*)':
encoder.cpp:9:32: error: expected ';' before ':' token
    9 |                 send(i * 8 + j):
      |                                ^
      |                                ;