Submission #974390

# Submission time Handle Problem Language Result Execution time Memory
974390 2024-05-03T09:36:29 Z 12345678 Broken Device (JOI17_broken_device) C++17
Compilation error
0 ms 0 KB
#include "Brunolib.h"
#include <bits/stdc++.h>

using namespace std;

#define ll long long

const int kx=65;

long long Bruno( int N, int A[] ){
    vector<ll> p(kx);
    ll res=0, cnt=0;
    p[0]=1;
    for (int i=1; i<kx; i++) p[i]=p[i-1]*2;
    for (int i=0; i<75; i++) if (A[2*i]) res+=p[cnt]*A[2*i+1], cnt++; 
    return res;
}



    

Compilation message

/usr/bin/ld: /tmp/ccjC9VTU.o: in function `main':
grader_anna.c:(.text.startup+0x10b): undefined reference to `Anna(int, long long, int, int*)'
collect2: error: ld returned 1 exit status

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