No Rules Rules

나는 요리사다 (feat. 백준, 2953번) 본문

생활/코테

나는 요리사다 (feat. 백준, 2953번)

개발하는 완두콩 2023. 1. 31. 13:27
728x90
반응형

나는 요리사다
https://www.acmicpc.net/problem/2953

 

2953번: 나는 요리사다

"나는 요리사다"는 다섯 참가자들이 서로의 요리 실력을 뽐내는 티비 프로이다. 각 참가자는 자신있는 음식을 하나씩 만들어오고, 서로 다른 사람의 음식을 점수로 평가해준다. 점수는 1점부터 5

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
	ios::sync_with_stdio(false), cin.tie(NULL);
    register int index, ans = 0;
    for(register int i = 0, j, x, y; i < 5; ++i){
        for(j = 0, x = 0; j < 4; ++j)
            cin >> y, x += y;
        if(x > ans)
            index = i + 1, ans = x;
    }
    cout << index << " " << ans;
    return 0;
}
// *&)*@*

 

반응형

최대값을 찾는 단순한 연산 문제입니다.

728x90
반응형
Comments