제출 #1110619

#제출 시각아이디문제언어결과실행 시간메모리
1110619vjudge1Tuna (COCI17_tuna)C++17
0 / 50
1 ms508 KiB
#include <bits/stdc++.h> using namespace std; int main(){ int n = 0, x = 0, c = 0, z = 0, toplam = 0; cin >> n >> x; for(int i = 0; i < n; i++){ cin >> c >> z; if(c - z <= x){ if(c > z){ toplam += c; } else{ toplam += z; } continue; } else{ int s = 0; cin >> s; toplam += s; continue; } } cout << toplam << endl; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...