보안을 그리다, 훈이

[Baekjoon/Python3] 2506번 점수계산 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2506번 점수계산

HooNeee 2020. 12. 3. 01:52

[Baekjoon/Python3] 2506번 점수계산

 

www.acmicpc.net/problem/2506

 

2506번: 점수계산

OX 문제는 맞거나 틀린 두 경우의 답을 가지는 문제를 말한다. 여러 개의 OX 문제로 만들어진 시험에서 연속적으로 답을 맞히는 경우에는 가산점을 주기 위해서 다음과 같이 점수 계산을 하기로

www.acmicpc.net

 

n = int(input())
res = list(map(int, input().split()))
total = 0   # 총점
plus = 0   # 가산점
for i in res:
    if i == 1:
        total += 1 + plus
        plus += 1
    else:
        plus = 0
print(total)
Comments