結果

問題 No.2836 Comment Out
ユーザー tikuwa_tikuwa_
提出日時 2024-08-11 10:50:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-08-11 10:51:07
合計ジャッジ時間 8,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 35 ms
52,480 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 81 ms
101,504 KB
testcase_08 AC 78 ms
101,888 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 112 ms
102,016 KB
testcase_15 AC 91 ms
101,984 KB
testcase_16 AC 92 ms
102,016 KB
testcase_17 WA -
testcase_18 AC 91 ms
101,888 KB
testcase_19 WA -
testcase_20 AC 90 ms
102,088 KB
testcase_21 AC 90 ms
102,016 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 58 ms
81,792 KB
testcase_25 AC 83 ms
102,272 KB
testcase_26 AC 70 ms
79,044 KB
testcase_27 AC 71 ms
92,672 KB
testcase_28 WA -
testcase_29 AC 69 ms
91,136 KB
testcase_30 AC 56 ms
77,056 KB
testcase_31 AC 66 ms
88,832 KB
testcase_32 WA -
testcase_33 AC 69 ms
86,528 KB
testcase_34 AC 48 ms
70,972 KB
testcase_35 AC 76 ms
97,152 KB
testcase_36 WA -
testcase_37 AC 73 ms
96,512 KB
testcase_38 AC 63 ms
84,608 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 76 ms
91,392 KB
testcase_42 WA -
testcase_43 AC 58 ms
72,576 KB
testcase_44 AC 37 ms
51,840 KB
testcase_45 WA -
testcase_46 AC 37 ms
52,096 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 36 ms
52,480 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 37 ms
52,352 KB
testcase_54 AC 37 ms
51,840 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
for i in A:
    if N<i : exit(print("No"))

left,right=[-1 for _ in range(N)],[-1 for _ in range(N)]
n=0
for i in range(N):
    if n<A[i]:
        for j in range(n,A[i]) : left[j]=i
        n=A[i]
n=0
for i in range(N-1,-1,-1):
    if n<A[i]:
        for j in range(n,A[i]) : right[j]=i
        n=A[i]

for i in range(N):
    if N-i<=right[i]-left[i] : exit(print("No"))
print("Yes")
0