| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1331196 | michael12 | Boxes with souvenirs (IOI15_boxes) | C++20 | 0 ms | 0 KiB |
#include "boxes.h"
#include<bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define endl '\n'
#define int long long
using namespace std;
const int maxn = 1e6 + 5;
const int inf = 1e9 + 5;
int delivery(int N, int K, int L, vector<int>& positions){
int cur = 0;
for(auto T : positions){
cur += T;
}
return cur;
}