# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
26025 | iletavcioski | Tuna (COCI17_tuna) | C++14 | 0 ms | 2020 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<iostream>
using namespace std;
typedef long long ll;
int main()
{
int n;
cin>>n;
int x;
cin>>x;
ll brojac=0;
for(int i=0;i<n;i++)
{
int a,b;
cin>>a>>b;
if(a<b)
swap(a,b);
if(a-b<=x)
brojac+=a;
else
{
int g;
cin>>g;
brojac+=g;
}
}
cout<<brojac<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |