문제)
답안 코드)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import sys
#sys.stdin=open("input.txt","rt")
N=int(input())
box=list(map(int,input().split()))
weight=1
score=0
for i in box:
if i==1:#맞췄을때
score+=weight*i
weight+=1
else:#맞추지 못했을때
weight=1
print(score)
|
cs |
'코딩테스트 with PYTHON' 카테고리의 다른 글
[python] 코딩테스트 대비 - 문자열에서 숫자만 추출 (0) | 2021.12.14 |
---|---|
[python] 코딩테스트 대비 - 회문 문자열 (0) | 2021.12.14 |
[python] 코딩테스트 대비 - 규칙구현 (0) | 2021.12.13 |
[python] 코딩테스트 대비 - 소수뒤집기 (0) | 2021.12.13 |
[python] 코딩테스트 대비 - 소수(에라토스테네스 체) (0) | 2021.11.13 |