# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1110623 | vjudge1 | Tuna (COCI17_tuna) | C++17 | 1 ms | 340 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 <bits/stdc++.h>
using namespace std;
int main() {
int n, x, k = 0; cin >> n >> x;
while (n--) {
int h, z; cin >> h >> z;
if (abs(h - z) <= x) k += max(h, z);
else { int s; cin >> s; k += s; }
}
cout << k;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |