# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1110685 |
2024-11-10T07:51:57 Z |
vjudge1 |
Tuna (COCI17_tuna) |
C++17 |
|
1 ms |
504 KB |
#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;
}
# |
Verdict |
Execution time |
Memory |
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 |