結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 106 ms
14,616 KB
testcase_08 AC 97 ms
14,600 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 137 ms
32,496 KB
testcase_15 AC 139 ms
32,868 KB
testcase_16 AC 144 ms
32,872 KB
testcase_17 WA -
testcase_18 AC 134 ms
32,868 KB
testcase_19 WA -
testcase_20 AC 134 ms
32,868 KB
testcase_21 AC 129 ms
32,868 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 89 ms
21,304 KB
testcase_25 AC 112 ms
27,268 KB
testcase_26 AC 65 ms
17,376 KB
testcase_27 AC 106 ms
26,412 KB
testcase_28 WA -
testcase_29 AC 92 ms
25,140 KB
testcase_30 AC 67 ms
19,156 KB
testcase_31 AC 97 ms
24,728 KB
testcase_32 WA -
testcase_33 AC 79 ms
21,512 KB
testcase_34 AC 54 ms
16,440 KB
testcase_35 AC 114 ms
28,536 KB
testcase_36 WA -
testcase_37 AC 122 ms
27,852 KB
testcase_38 AC 84 ms
22,960 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 97 ms
25,068 KB
testcase_42 WA -
testcase_43 AC 51 ms
15,696 KB
testcase_44 AC 27 ms
10,624 KB
testcase_45 WA -
testcase_46 AC 27 ms
10,496 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 26 ms
10,624 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 30 ms
10,624 KB
testcase_54 AC 28 ms
10,624 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque

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

Q=deque(A)

for i in range(1,N+1):
    if Q[0]<=i:
        Q.popleft()
    elif Q[-1]<=i:
        Q.pop()

if len(Q)==0:
    print("Yes")
else:
    print("No")
0