# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1111184 | 2024-11-11T16:22:36 Z | vjudge1 | Tuna (COCI17_tuna) | C++17 | 3 ms | 336 KB |
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL); #ifndef ONLINE_JUDGE freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); #endif int n; cin>>n; int x; cin>>x; int sum=0; while(n--){ int a, b; cin>>a>>b; if(abs(a-b)<=x) sum+=max(a, b); else{int c; cin>>c; sum+=c;} } cout<<sum; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 336 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |