짱해커가 되어보자

boj 2506 본문

프로그래밍_일반/백준

boj 2506

Spadework 2020. 2. 3. 22:41

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

s, c, n, l = 0, [0, 1] + [0]*99, input(), input().replace(' ', '').split('0')
for i in range(2, 101): c[i] = c[i-1] + i
for i in l: s += c[len(i)]
print(s)

 

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

boj 10990  (0) 2020.02.03
boj 5086  (0) 2020.02.03
boj 10833  (0) 2020.02.03
boj 2501  (0) 2020.02.03
boj 2965  (0) 2020.02.03
Comments