結果

問題 No.2518 Adjacent Larger
ユーザー atcoder8atcoder8
提出日時 2023-10-27 23:21:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 472 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 97,280 KB
最終ジャッジ日時 2024-09-25 15:19:13
合計ジャッジ時間 4,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 87 ms
96,384 KB
testcase_17 AC 69 ms
79,616 KB
testcase_18 AC 69 ms
80,000 KB
testcase_19 AC 60 ms
77,312 KB
testcase_20 AC 76 ms
85,504 KB
testcase_21 AC 81 ms
95,616 KB
testcase_22 AC 82 ms
96,000 KB
testcase_23 AC 86 ms
96,896 KB
testcase_24 AC 86 ms
96,768 KB
testcase_25 AC 86 ms
97,280 KB
testcase_26 AC 85 ms
96,896 KB
testcase_27 AC 82 ms
96,128 KB
testcase_28 AC 84 ms
96,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    aa = list(map(int, input().split()))

    zero = aa.count(0)
    if zero == 0 or zero > n // 2:
        return False

    one = aa.count(0)
    if one == 0 or one > n // 2:
        return False

    if zero != one:
        return False

    for i in range(n):
        if aa[i] == aa[(i + 1) % n] and aa[i] in (0, 2):
            return False

    return True

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