Submission #64884

# Submission time Handle Problem Language Result Execution time Memory
64884 2018-08-06T03:53:49 Z mirbek01 Boxes with souvenirs (IOI15_boxes) C++17
0 / 100
2 ms 256 KB
#include "boxes.h"

# include <bits/stdc++.h>

long long delivery(int N, int K, int L, int p[]) {
      long long ans = 0;

      for(int i = 0; i < N; i ++){
            if((N - p[i]) > p[i])
                  ans += p[i] * 2;
            else
                  ans += (N - p[i]) * 2;
      }

      return ans;
}

Compilation message

boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:5:31: warning: unused parameter 'K' [-Wunused-parameter]
 long long delivery(int N, int K, int L, int p[]) {
                               ^
boxes.cpp:5:38: warning: unused parameter 'L' [-Wunused-parameter]
 long long delivery(int N, int K, int L, int p[]) {
                                      ^
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -