https://www.acmicpc.net/problem/8393
n = int(input())
numbers = []
while n:
for i in range(1, n+1):
numbers.append(i)
n -= 1
print(sum(numbers))
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 2741번 - N 찍기 (0) | 2020.06.09 |
---|---|
[Python] 백준 15552번 - 빠른 A+B (0) | 2020.06.09 |
[Python/Java] 백준 10950번 - A+B - 3 (0) | 2020.06.09 |
[Python/Java] 백준 2739번 - 구구단 (0) | 2020.06.09 |
[Python/Java] 백준 2884번 - 알람 시계 (0) | 2020.06.08 |
댓글