#include <bits/stdc++.h>
using namespace std;
int main()
{
int t,x;
int top = 0;
cin>>t>>x;
for (int n = 0; n < t; ++n)
{
int a,b;
cin>>a>>b;
if (abs(a-b)>x)
{
int yeni;
cin>>yeni;
top += yeni;
}
else
{
if (a>b)
{
top += a;
}
else
{
top+=b;
}
}
}
cout<<top<<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 |
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 |
504 KB |
Output is correct |
9 |
Correct |
1 ms |
336 KB |
Output is correct |
10 |
Correct |
1 ms |
336 KB |
Output is correct |