# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1110616 | vjudge1 | Tuna (COCI17_tuna) | C++17 | 1 ms | 508 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;
#define int long long
#define pb push_back
#define F first
#define S second
#define all(v) v.begin(),v.end()
typedef vector<int> vi;
typedef vector<char> vc;
typedef pair<int,int> ii;
typedef vector<ii> vii;
const int INF = 2e5 + 100;
int n,x;
vi h,z;
int32_t main(){
cin >> n >> x;
h.resize(n); z.resize(n);
int sm = 0;
for (int i = 0; i < n; i++){
cin >> h[i] >> z[i];
if (abs(h[i] - z[i]) > x){
int tmp; cin >> tmp; sm += tmp;
}
else sm += max(h[i],z[i]);
}
cout << sm << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |