Recent Posts
Notice
No Rules Rules
슈퍼 마리오 (feat. 백준, 2851번) 본문
728x90
반응형
슈퍼 마리오
https://www.acmicpc.net/problem/2851
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <math.h>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
int arr[10], ans = 0;
for(register int i = 0; i < 10; ++i)
cin >> arr[i];
for(register int i = 0; i < 10; ++i){
if(abs(ans - 100) >= abs(ans + arr[i] - 100))
ans += arr[i];
else
break;
}
cout << ans;
return 0;
}
// *&)*@*
반응형
100에 더 가까운 총 합을 구하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
2023년은 검은 토끼의 해 (feat. 백준, 27494번) (0) | 2023.02.21 |
---|---|
코딩은 체육과목 입니다 (feat. 백준, 25314번) (0) | 2023.02.21 |
후위 표기식 (feat. 백준, 1918번) (0) | 2023.02.20 |
스네이크버드 (feat. 백준, 16435번) (0) | 2023.02.20 |
ABCDE (feat. 백준, 13023번) (0) | 2023.02.17 |
Comments