結果

問題 No.2518 Adjacent Larger
ユーザー atcoder8atcoder8
提出日時 2023-10-28 00:18:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 103,472 KB
最終ジャッジ日時 2024-09-25 15:44:15
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 179 ms
77,568 KB
testcase_02 AC 188 ms
77,604 KB
testcase_03 AC 186 ms
77,560 KB
testcase_04 AC 178 ms
77,824 KB
testcase_05 AC 188 ms
77,680 KB
testcase_06 AC 107 ms
76,332 KB
testcase_07 AC 107 ms
76,544 KB
testcase_08 AC 102 ms
76,324 KB
testcase_09 AC 99 ms
76,160 KB
testcase_10 AC 98 ms
76,544 KB
testcase_11 AC 56 ms
69,504 KB
testcase_12 AC 55 ms
71,040 KB
testcase_13 AC 56 ms
69,760 KB
testcase_14 AC 56 ms
69,272 KB
testcase_15 AC 56 ms
70,272 KB
testcase_16 AC 89 ms
103,472 KB
testcase_17 AC 69 ms
84,096 KB
testcase_18 AC 68 ms
84,352 KB
testcase_19 AC 71 ms
80,768 KB
testcase_20 AC 81 ms
90,624 KB
testcase_21 AC 80 ms
95,744 KB
testcase_22 AC 80 ms
95,872 KB
testcase_23 AC 94 ms
100,736 KB
testcase_24 AC 84 ms
96,000 KB
testcase_25 AC 84 ms
96,896 KB
testcase_26 AC 89 ms
100,608 KB
testcase_27 AC 83 ms
97,792 KB
testcase_28 AC 93 ms
103,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(aa: list[int]):
    n = len(aa)

    zero_num = aa.count(0)
    two_num = aa.count(2)

    if (
        zero_num == 0
        or zero_num > n // 2
        or two_num == 0
        or two_num > n // 2
        or zero_num != two_num
    ):
        return False

    start = aa.index(0)
    inc = False
    for i in range(1, n):
        cur = (start + i) % n
        if inc:
            if aa[cur] == 2:
                return False

            if aa[cur] == 0:
                inc = False
        else:
            if aa[cur] == 0:
                return False

            if aa[cur] == 2:
                inc = True

    return True


def main():
    t = int(input())
    for _ in range(t):
        input()
        aa = list(map(int, input().split()))
        print("Yes" if solve(aa) else "No")


if __name__ == "__main__":
    main()
0