-코드
n, c, s = map(int, input().split())
x = list(map(int, input().split()))
p = 1
r = 0
for i in range(len(x)):
p += x[i]
if p == n + 1:
p -= n
elif p == 0:
p = n
if s == p or (s == 1 and i == 0):
r += 1
print(r)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[프로그래머스/파이썬] K 번째 수 (0) | 2021.04.24 |
---|---|
[백준/파이썬]11908번 카드 (0) | 2021.04.24 |
[백준/파이썬]16239번 Nadan (0) | 2021.04.24 |
[백준/파이썬]8806번 Papier kamień nożyczki (0) | 2021.04.24 |
[백준/파이썬]5102번 Sarah's Toys (0) | 2021.04.24 |