Submission #1110663

#TimeUsernameProblemLanguageResultExecution timeMemory
1110663vjudge1Tuna (COCI17_tuna)C++98
50 / 50
1 ms336 KiB
#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 timeMemoryGrader output
Fetching results...