Recent Posts
Notice
No Rules Rules
수들의 합 (feat. 백준, 1789번) 본문
728x90
반응형
수들의 합
https://www.acmicpc.net/problem/1789
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N = 0;
register long long S, ans = 0;
cin >> S;
while(1){
if(ans == S)
break;
else if(ans > S){
--N;
break;
}
else
ans += ++N;
}
cout << N;
return 0;
}
// *&)*@*
반응형
- 1부터 N까지 누적 합 ans를 구합니다.
- ans와 입력으로 주어진 S와의 부등호 관계에 따라 답을 도출하면 됩니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
마인크래프트 (feat. 백준, 18111번) (0) | 2022.10.07 |
---|---|
암호 만들기 (feat. 백준, 1759번) (0) | 2022.10.07 |
달이 차오른다, 가자. (feat. 백준, 1194번) (0) | 2022.10.06 |
적록색약 (feat. 백준, 10026번) (0) | 2022.10.05 |
특정 거리의 도시 찾기 (feat. 백준, 18352번) (0) | 2022.10.05 |
Comments