문제 출처:https://www.acmicpc.net/problem/2953
코드는 다음과 같습니다:
#include <iostream>
using namespace std ;
int main(){
ios::sync_with_stdio(false) ;
cin.tie(NULL) ; cout.tie(NULL) ;
int max = 0, index = 0 ;
for(int i = 0 ; i < 5 ; i++){
int temp, sum = 0 ;
for(int j = 0 ; j < 4 ; j++){
cin >> temp ;
sum += temp ;
}
if(max < sum){
index = i + 1 ;
max = sum ;
}
}
cout << index << " " << max << endl ;
return 0 ;
}
해당 문제는 Github에서도 보실 수 있습니다:
https://github.com/gurcks8989/CodingTest/blob/master/BackJoon/HPS/P2953_I_am_Chef.cpp
훈수 및 조언은 언제든 환영입니다.