#include <bits/stdc++.h>
using namespace std;
int main(){
int n = 0, x = 0, c = 0, z = 0, toplam = 0;
cin >> n >> x;
for(int i = 0; i < n; i++){
cin >> c >> z;
if(c - z <= x){
if(c > z){
toplam += c;
}
else{
toplam += z;
}
}
else{
int s = 0;
cin >> s;
toplam += s;
}
}
cout << toplam << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Correct |
1 ms |
336 KB |
Output is correct |
3 |
Correct |
1 ms |
504 KB |
Output is correct |
4 |
Correct |
1 ms |
336 KB |
Output is correct |
5 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |