답안 #1110647

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1110647 2024-11-10T06:53:56 Z vjudge1 Tuna (COCI17_tuna) C++17
50 / 50
1 ms 400 KB
#include <bits/stdc++.h> // include all standard headers
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    
    int n, x;
    cin >> n >> x;

    int n1, n2, n3;
    int total = 0;

    while(n--){
        cin >> n1 >> n2;
        if(abs(n1 - n2) > x){
            cin >> n3;
            total += n3;
        }
        else total += max(n1, n2);
    }

    cout << total << endl;

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Correct 1 ms 336 KB Output is correct
3 Correct 1 ms 400 KB Output is correct
4 Correct 1 ms 336 KB Output is correct
5 Correct 1 ms 336 KB Output is correct
6 Correct 1 ms 336 KB Output is correct
7 Correct 1 ms 336 KB Output is correct
8 Correct 1 ms 336 KB Output is correct
9 Correct 1 ms 336 KB Output is correct
10 Correct 1 ms 336 KB Output is correct