본문 바로가기

Problem Solving/백준

나는 요리사

#include <bits/stdc++.h>
using namespace std;

int main() {
    vector<int> chef(5);
    int temp;
    for(int i = 0; i < 5; i++) {
        for(int j = 0; j < 4; j++) {
            cin >> temp;
            chef[i] += temp;
        }
    }
    cout << distance(chef.begin(),max_element(chef.begin(),chef.end()))+1 << "\n" << *max_element(chef.begin(),chef.end());
}

'Problem Solving > 백준' 카테고리의 다른 글

화성수학  (0) 2022.01.16
나머지  (0) 2022.01.16
부녀회장이 될테야  (0) 2022.01.16
초콜릿 자르기  (0) 2022.01.16
문문문  (0) 2022.01.16