Note
[codeup] 93. 거기까지! 이제 그만~ 본문
728x90
n = int(input())
a = 0
b = 0
while True:
a+=b
b+=1
if a>=n:
break
print(a)
'etc > Coding Test' 카테고리의 다른 글
[codeup] 95. 수 나열하기1 (0) | 2021.12.25 |
---|---|
[codeup] 94. 3의 배수는 통과 (0) | 2021.12.24 |
[codeup] 92. 소리 파일 저장용량 계산하기 (0) | 2021.12.22 |
[codeup] 91. 빛 섞어 색 만들기 (0) | 2021.12.21 |
[codeup] 90. 3 6 9 게임의 왕이 되자 (0) | 2021.12.20 |
Comments