Submission #918051

#TimeUsernameProblemLanguageResultExecution timeMemory
918051vjudge1Parrots (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((1 << j) & M[i]){
                send(j | (i << 3));
            }
        }
    }
}

Compilation message (stderr)

/usr/bin/ld: /tmp/ccZMonLc.o: in function `main':
grader_decoder.cpp:(.text.startup+0x1ef): undefined reference to `decode(int, int, int*)'
collect2: error: ld returned 1 exit status