짱해커가 되어보자

boj 15236 본문

프로그래밍_일반/백준

boj 15236

Spadework 2020. 2. 4. 13:12

* Solved 기준 브론즈4 단순 풀이

boj_2921 문제와 동일한 문제이다

l = [0]
for i in range(1,int(input())+1):
	l.append(l[i-1]+int((i+1)*i*1.5))
print(l[-1])

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 5101  (0) 2020.02.04
boj 15059  (0) 2020.02.04
boj 18301  (0) 2020.02.04
boj 5361  (0) 2020.02.04
boj 2959  (0) 2020.02.04
Comments