Submission #1307419

#TimeUsernameProblemLanguageResultExecution timeMemory
1307419huangzijia11Catfish Farm (IOI22_fish)C++20
Compilation error
0 ms0 KiB
long long max_weights(int N, int M, int[] X, int[] Y, int[] W) { long long res = 0; for (int i = 0; i < N; i++) res += W[i]; return res; }

Compilation message (stderr)

fish.cpp:1:43: error: expected ',' or '...' before 'X'
    1 | long long max_weights(int N, int M, int[] X, int[] Y, int[] W) {
      |                                           ^
fish.cpp: In function 'long long int max_weights(int, int, int*)':
fish.cpp:3:38: error: 'W' was not declared in this scope
    3 |   for (int i = 0; i < N; i++) res += W[i];
      |                                      ^