# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1110663 | vjudge1 | Tuna (COCI17_tuna) | C++98 | 1 ms | 336 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,a,b,c,toplam=0;
cin >> n;
cin >> x;
for(int i=0;i<n;i++){
cin >> a >> b;
if(abs(a-b)>x){
cin >> c;
toplam+=c;
}
else if(a>=b){
toplam+=a;
}
else if(b>a){
toplam+=b;
}
}
cout << toplam;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |