Submission #60782

#TimeUsernameProblemLanguageResultExecution timeMemory
60782dukati8선물상자 (IOI15_boxes)C++14
Compilation error
0 ms0 KiB
#include "boxes.h"
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a; i<int(b); i++)
#define all(x) x.begin(),x.end()

long long delivery(int N, int K, int L, int p[]) {
    if (K==1) {
      long long tot=0;
      rep(i,0,N) {
        tot+=2*min(p[i],L-p[i]);
      }
      return tot
    }
}

Compilation message (stderr)

boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:14:5: error: expected ';' before '}' token
     }
     ^
boxes.cpp:15:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^