# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
920025 | coding_snorlax | Boxes with souvenirs (IOI15_boxes) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "boxes.h"
#include<bits/stdc++.h>
#define ll long long int
using namespace std;
long long delivery(int N, int K, int L, vector<int> p) {
ll answer = 0;
for(int i:p){
answer += 2*min(i,L-i);
}
return answer;
}