結果

問題 No.2518 Adjacent Larger
ユーザー 👑 rin204rin204
提出日時 2023-10-27 21:36:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 97,712 KB
最終ジャッジ日時 2024-09-25 13:41:04
合計ジャッジ時間 3,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,444 KB
testcase_01 AC 156 ms
77,624 KB
testcase_02 AC 155 ms
77,620 KB
testcase_03 AC 158 ms
77,548 KB
testcase_04 AC 149 ms
77,740 KB
testcase_05 AC 153 ms
77,488 KB
testcase_06 AC 92 ms
76,324 KB
testcase_07 AC 90 ms
76,200 KB
testcase_08 AC 93 ms
76,340 KB
testcase_09 AC 92 ms
76,144 KB
testcase_10 AC 92 ms
76,500 KB
testcase_11 AC 49 ms
67,880 KB
testcase_12 AC 49 ms
69,972 KB
testcase_13 AC 50 ms
68,080 KB
testcase_14 AC 50 ms
69,252 KB
testcase_15 AC 50 ms
68,812 KB
testcase_16 AC 73 ms
96,928 KB
testcase_17 AC 58 ms
79,572 KB
testcase_18 AC 59 ms
81,476 KB
testcase_19 AC 56 ms
77,588 KB
testcase_20 AC 62 ms
85,520 KB
testcase_21 AC 71 ms
96,156 KB
testcase_22 AC 73 ms
96,836 KB
testcase_23 AC 74 ms
97,452 KB
testcase_24 AC 71 ms
97,204 KB
testcase_25 AC 72 ms
97,712 KB
testcase_26 AC 71 ms
97,268 KB
testcase_27 AC 73 ms
97,640 KB
testcase_28 AC 72 ms
96,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    A = list(map(int, input().split()))
    if sum(A) != n or 0 not in A:
        return False

    for b in range(2):
        x = b
        ok = True
        for a in A:
            x = a - (1 - x)
            if x < 0 or 2 <= x:
                ok = False
                break

        if x != b:
            ok = False
        if ok:
            return True
    return False


for _ in range(int(input())):
    if solve():
        print("Yes")
    else:
        print("No")
0