結果

問題 No.2518 Adjacent Larger
ユーザー tassei903tassei903
提出日時 2023-10-27 22:21:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 118,152 KB
最終ジャッジ日時 2024-09-25 14:23:49
合計ジャッジ時間 3,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,432 KB
testcase_01 AC 130 ms
77,856 KB
testcase_02 AC 133 ms
77,980 KB
testcase_03 AC 129 ms
77,952 KB
testcase_04 AC 134 ms
77,796 KB
testcase_05 AC 128 ms
77,872 KB
testcase_06 AC 76 ms
75,932 KB
testcase_07 AC 75 ms
76,048 KB
testcase_08 AC 75 ms
76,212 KB
testcase_09 AC 75 ms
75,812 KB
testcase_10 AC 75 ms
76,104 KB
testcase_11 AC 54 ms
73,972 KB
testcase_12 AC 57 ms
75,520 KB
testcase_13 AC 54 ms
73,456 KB
testcase_14 AC 51 ms
73,200 KB
testcase_15 AC 54 ms
74,124 KB
testcase_16 AC 93 ms
113,480 KB
testcase_17 AC 74 ms
95,956 KB
testcase_18 AC 75 ms
95,804 KB
testcase_19 AC 64 ms
86,768 KB
testcase_20 AC 78 ms
101,296 KB
testcase_21 AC 89 ms
113,560 KB
testcase_22 AC 80 ms
106,920 KB
testcase_23 AC 94 ms
113,280 KB
testcase_24 AC 74 ms
95,776 KB
testcase_25 AC 72 ms
96,400 KB
testcase_26 AC 72 ms
96,856 KB
testcase_27 AC 93 ms
118,152 KB
testcase_28 AC 96 ms
118,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
for _ in range(ni()):
    n = ni()
    a = [x for x in na() if x != 1]
    if len(a) and len(a)%2 == 0 and (a == [[0,2][i%2] for i in range(len(a))] or a == [[2,0][i%2] for i in range(len(a))]):
        Yes()
    else:
        No()
0