# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1110683 | 2024-11-10T07:49:32 Z | vjudge1 | Tuna (COCI17_tuna) | C++17 | 1 ms | 336 KB |
#include <bits/stdc++.h> using namespace std; int main() { int t; int top = 0; cin>>t; for (int n = 0; n < t; ++n) { int a,b; cin>>a>>b; if (abs(a-b)>2) { int yeni; cin>>yeni; top += yeni; } else { if (a>b) { top += a; } else { top+=b; } } } cout<<top<<endl; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |