Submission #303566

#TimeUsernameProblemLanguageResultExecution timeMemory
303566medmdgCarnival Tickets (IOI20_tickets)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include "tickets.h" using namespace std; long long int find_maximum(int k, int[][] x){ return x[0][0]; }

Compilation message (stderr)

tickets.cpp:4:41: error: multidimensional array must have bounds for all dimensions except the first
    4 | long long int find_maximum(int k, int[][] x){
      |                                         ^
tickets.cpp:4:43: error: expected ',' or '...' before 'x'
    4 | long long int find_maximum(int k, int[][] x){
      |                                           ^
tickets.cpp: In function 'long long int find_maximum(int)':
tickets.cpp:5:12: error: 'x' was not declared in this scope
    5 |     return x[0][0];
      |            ^