結果

問題 No.2518 Adjacent Larger
ユーザー june19312june19312
提出日時 2023-10-27 22:08:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,972 KB
実行使用メモリ 116,736 KB
最終ジャッジ日時 2024-09-25 14:13:43
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 217 ms
78,300 KB
testcase_02 AC 200 ms
78,152 KB
testcase_03 AC 199 ms
77,628 KB
testcase_04 AC 199 ms
77,796 KB
testcase_05 AC 200 ms
78,312 KB
testcase_06 AC 103 ms
77,232 KB
testcase_07 AC 101 ms
76,652 KB
testcase_08 AC 105 ms
76,720 KB
testcase_09 AC 104 ms
77,244 KB
testcase_10 AC 115 ms
76,916 KB
testcase_11 AC 72 ms
76,160 KB
testcase_12 AC 73 ms
76,032 KB
testcase_13 AC 74 ms
75,904 KB
testcase_14 AC 70 ms
76,032 KB
testcase_15 AC 65 ms
75,648 KB
testcase_16 AC 110 ms
113,408 KB
testcase_17 AC 88 ms
100,864 KB
testcase_18 AC 87 ms
100,608 KB
testcase_19 AC 82 ms
97,024 KB
testcase_20 AC 95 ms
104,704 KB
testcase_21 AC 106 ms
113,536 KB
testcase_22 AC 104 ms
113,920 KB
testcase_23 AC 110 ms
113,788 KB
testcase_24 AC 96 ms
109,824 KB
testcase_25 AC 96 ms
110,080 KB
testcase_26 AC 96 ms
109,952 KB
testcase_27 AC 107 ms
116,736 KB
testcase_28 AC 112 ms
116,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N = int(input())
    A = list(map(str,input().split()))
    C = "".join(A)
    BB = []
    for ii,vv in enumerate(C):
        if vv != "1":
            BB.append(vv)
    B = "".join(BB)

    if "22" in B or "00" in B:
        print("No")
        continue
    if B.find("0") == -1 or B.find("2") == -1:
        print("No")
        continue
    if B.count("2") != B.count("0"):
        print("No")
        continue
    if B[0] == "0" and B[-1] == "0":
        print("No")
        continue
    if B[0] == "2" and B[-1] == "2":
        print("No")
        continue

    cnt = 0
    for ii,vv in enumerate(A):
        cnt += int(vv)
    if cnt != N:
        print("No")
        continue
    
    print("Yes")
0