結果

問題 No.2518 Adjacent Larger
ユーザー ニックネームニックネーム
提出日時 2023-10-27 21:54:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,732 KB
最終ジャッジ日時 2024-09-25 14:01:40
合計ジャッジ時間 4,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 167 ms
10,752 KB
testcase_02 AC 169 ms
10,752 KB
testcase_03 AC 170 ms
10,752 KB
testcase_04 AC 171 ms
10,752 KB
testcase_05 AC 169 ms
10,752 KB
testcase_06 AC 60 ms
10,752 KB
testcase_07 AC 60 ms
10,624 KB
testcase_08 AC 61 ms
10,752 KB
testcase_09 AC 60 ms
10,752 KB
testcase_10 AC 60 ms
10,752 KB
testcase_11 AC 51 ms
10,880 KB
testcase_12 AC 54 ms
10,880 KB
testcase_13 AC 52 ms
10,880 KB
testcase_14 AC 53 ms
10,752 KB
testcase_15 AC 52 ms
10,880 KB
testcase_16 AC 118 ms
14,080 KB
testcase_17 AC 83 ms
12,752 KB
testcase_18 AC 82 ms
12,904 KB
testcase_19 AC 72 ms
12,272 KB
testcase_20 AC 95 ms
13,428 KB
testcase_21 AC 121 ms
14,728 KB
testcase_22 AC 119 ms
14,732 KB
testcase_23 AC 122 ms
14,732 KB
testcase_24 AC 70 ms
13,900 KB
testcase_25 AC 73 ms
14,608 KB
testcase_26 AC 73 ms
14,472 KB
testcase_27 AC 143 ms
14,608 KB
testcase_28 AC 146 ms
14,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n = int(input())
    a = list(map(int,input().split()))
    f = sum(a)==n
    a = [v for v in a if v!=1]
    for i in range(len(a)):
        if a[i-1]==a[i]==0 or a[i-1]==a[i]==2: f = False
    print("Yes" if a and f else "No")
0