728x90
반응형
단순 수학 문제이다.
for _ in range(int(input())):
n = int(input())
res = sum([i**2 for i in range(1, n+1)])
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 14579번 덧셈과 곱셈(python) (0) | 2021.03.03 |
---|---|
백준 알고리즘 14542번 Outer Triangle Sum(python) (0) | 2021.03.03 |
백준 알고리즘 14568번 2017 연세대학교 프로그래밍 경시대회(python) (0) | 2021.03.03 |
백준 알고리즘 14491번 9진수(python) (0) | 2021.03.03 |
백준 알고리즘 14489번 치킨 두 마리 (...)(python) (0) | 2021.03.03 |