結果

問題 No.2836 Comment Out
ユーザー titiatitia
提出日時 2024-08-09 22:21:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,020 KB
最終ジャッジ日時 2024-08-09 22:21:59
合計ジャッジ時間 10,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 210 ms
32,520 KB
testcase_15 AC 204 ms
32,888 KB
testcase_16 AC 206 ms
33,016 KB
testcase_17 WA -
testcase_18 AC 212 ms
32,888 KB
testcase_19 WA -
testcase_20 AC 210 ms
33,012 KB
testcase_21 AC 216 ms
32,888 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 117 ms
21,320 KB
testcase_25 AC 303 ms
27,288 KB
testcase_26 AC 142 ms
17,440 KB
testcase_27 AC 158 ms
26,432 KB
testcase_28 WA -
testcase_29 AC 147 ms
25,288 KB
testcase_30 AC 98 ms
19,052 KB
testcase_31 AC 143 ms
24,876 KB
testcase_32 WA -
testcase_33 AC 191 ms
21,536 KB
testcase_34 AC 74 ms
16,460 KB
testcase_35 AC 183 ms
28,552 KB
testcase_36 WA -
testcase_37 AC 167 ms
27,872 KB
testcase_38 AC 125 ms
22,980 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 143 ms
25,092 KB
testcase_42 WA -
testcase_43 AC 106 ms
15,716 KB
testcase_44 AC 27 ms
10,624 KB
testcase_45 WA -
testcase_46 AC 25 ms
10,624 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 27 ms
10,752 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 29 ms
10,624 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

LIST=[0]*(N+5)

for i in range(N):
    x=N-A[i]

    if 0<=i-x<N:
        LIST[max(i-x,0)]+=1

    if i+x+1>=0:
        LIST[min(i+x+1,N+4)]-=1

for i in range(1,len(LIST)):
    LIST[i]+=LIST[i-1]

if max(LIST)==N:
    print("Yes")
else:
    print("No")
0