#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;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Correct |
1 ms |
336 KB |
Output is correct |
3 |
Correct |
1 ms |
336 KB |
Output is correct |
4 |
Correct |
1 ms |
336 KB |
Output is correct |
5 |
Correct |
1 ms |
336 KB |
Output is correct |
6 |
Correct |
1 ms |
336 KB |
Output is correct |
7 |
Correct |
1 ms |
336 KB |
Output is correct |
8 |
Correct |
1 ms |
336 KB |
Output is correct |
9 |
Correct |
1 ms |
336 KB |
Output is correct |
10 |
Correct |
1 ms |
336 KB |
Output is correct |