Recent Posts
Notice
No Rules Rules
나는 요리사다 (feat. 백준, 2953번) 본문
728x90
반응형
나는 요리사다
https://www.acmicpc.net/problem/2953
// 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
반응형
'생활 > 코테' 카테고리의 다른 글
두 배열의 합 (feat. 백준, 2143번) (0) | 2023.02.01 |
---|---|
이중 우선순위 큐 (feat. 백준, 7662번) (0) | 2023.01.31 |
집합 (feat. 백준, 11723번) (0) | 2023.01.31 |
몇개고? (feat. 백준, 27294번) (0) | 2023.01.31 |
N번째 큰 수 (feat. 백준, 2075번) (0) | 2023.01.27 |
Comments