공존’s BLOG
/
Database
/
Resources
/
백준_Python
/
25. 백준_Python [1789] 수들의 합
Search
Share
25. 백준_Python [1789] 수들의 합
1789번: 수들의 합
서로 다른 N개의 자연수의 합이 S라고 한다. S를 알 때, 자연수 N의 최댓값은 얼마일까?
number
=
int
(
input
(
)
)
sum
=
0
result
=
0
for
i
in
range
(
1
,
number
+
1
)
:
sum
+=
i result
+=
1
if
sum
>
number
:
result
-=
1
break
print
(
result
)
Python
복사