제출 #1110615

#제출 시각아이디문제언어결과실행 시간메모리
1110615vjudge1Tuna (COCI17_tuna)C++17
0 / 50
1 ms504 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;
            }
        }
        else{
            int s = 0;
            cin >> s;
            toplam += s;
        }
    }
    cout << toplam << endl;
}
#Verdict Execution timeMemoryGrader output
Fetching results...