🥞 BE
🧩 DE
👾 CS
💻 Dev_Log
/
Category
/
Algorithm
/
전체 알고리즘 목록
/
1789_수들의 합
💻 Dev_Log
/
Category
/
Algorithm
/
전체 알고리즘 목록
/
1789_수들의 합
🥞 BE
🧩 DE
👾 CS
1789_수들의 합
담당자
완료 여부
Solved
요약
날짜
2023/11/20
태그
그리디
난이도
S5
출처
백준
코드
s
=
int
(
input
(
)
)
temp
=
1
n
=
1
while
True
:
if
(
n
<=
s
)
:
temp
+=
1
n
+=
temp
else
:
break
print
(
temp
-
1
)
Python
복사