Link : judge.koreatech.ac.kr/problem.php?id=1110
Python
더보기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
from sys import stdin
data_length = int(stdin.readline().strip())
arr = list(map(int, stdin.readline().strip().split(' ')))
pos = 0
while True:
if pos >= data_length or pos + arr[pos] >= data_length:
print('Yes')
break
max = 0
pres = 0
for i in range(1, arr[pos] + 1):
if arr[pos + i] + i >= max:
max = arr[pos + i] + i
pres = pos + i
if (max == 0):
print('No')
break
else:
pos = pres
|
cs |
FeedBack
cjw.git@gmail.com
'알고리즘 > 소스코드' 카테고리의 다른 글
KOREATECH 1119: 제스쳐 컨트롤 II (0) | 2020.12.16 |
---|---|
KOREATECH 1116: 짝궁 문자열 (0) | 2020.12.15 |
KOREATECH 1109: 자라나라 나무나무 (0) | 2020.12.14 |
KOREATECH 1100: 눈이 침침한 재성이 (0) | 2020.12.14 |
KOREATECH 1098: 첫 유일 문자 찾기 (0) | 2020.12.14 |
댓글