# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1135391 | thinkin | Nile (IOI24_nile) | C++17 | 0 ms | 0 KiB |
// https://oj.uz/problem/view/IOI24_nile
#include <bits/stdc++.h>
using namespace std;
int calculate_costs() {
int n, q;
cin >> n;
vector<int> w(n), a(n), b(n);
for (int i=0; i<n; i++) {
cin >> w[i] >> a[i] >> b[i];
}
cin >> q;
vector<int> e(q);
for (int i=0; i<q; i++) {
cin >> e[i];
}
cout << "test";
}