結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 402 ms
21,688 KB
testcase_08 AC 404 ms
21,556 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 199 ms
32,648 KB
testcase_15 AC 203 ms
32,888 KB
testcase_16 AC 201 ms
33,016 KB
testcase_17 WA -
testcase_18 AC 206 ms
32,892 KB
testcase_19 WA -
testcase_20 AC 203 ms
33,016 KB
testcase_21 AC 202 ms
32,892 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 114 ms
21,156 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 156 ms
26,428 KB
testcase_28 AC 307 ms
25,424 KB
testcase_29 AC 144 ms
25,288 KB
testcase_30 AC 106 ms
19,052 KB
testcase_31 AC 146 ms
24,752 KB
testcase_32 AC 133 ms
16,180 KB
testcase_33 WA -
testcase_34 AC 78 ms
16,580 KB
testcase_35 AC 179 ms
28,560 KB
testcase_36 AC 212 ms
20,060 KB
testcase_37 AC 185 ms
27,872 KB
testcase_38 AC 124 ms
22,980 KB
testcase_39 AC 269 ms
23,464 KB
testcase_40 AC 291 ms
24,356 KB
testcase_41 AC 144 ms
25,220 KB
testcase_42 AC 361 ms
25,932 KB
testcase_43 WA -
testcase_44 AC 27 ms
10,624 KB
testcase_45 WA -
testcase_46 AC 26 ms
10,624 KB
testcase_47 WA -
testcase_48 AC 28 ms
10,624 KB
testcase_49 AC 27 ms
10,624 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 27 ms
10,752 KB
testcase_54 AC 27 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 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]

S=N*(N+1)//2

if max(LIST[:N])==N and sum(A)<=S:
    print("Yes")
else:
    print("No")
0