結果

問題 No.2518 Adjacent Larger
ユーザー MasKoaTSMasKoaTS
提出日時 2023-09-20 13:52:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 103,448 KB
最終ジャッジ日時 2024-09-25 05:53:59
合計ジャッジ時間 3,718 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,140 KB
testcase_01 AC 155 ms
77,724 KB
testcase_02 AC 147 ms
77,580 KB
testcase_03 AC 140 ms
77,744 KB
testcase_04 AC 126 ms
77,228 KB
testcase_05 AC 154 ms
78,176 KB
testcase_06 AC 79 ms
76,180 KB
testcase_07 AC 82 ms
76,208 KB
testcase_08 AC 80 ms
76,420 KB
testcase_09 AC 78 ms
76,328 KB
testcase_10 AC 80 ms
76,460 KB
testcase_11 AC 60 ms
73,056 KB
testcase_12 AC 61 ms
73,928 KB
testcase_13 AC 61 ms
72,300 KB
testcase_14 AC 61 ms
74,080 KB
testcase_15 AC 59 ms
74,160 KB
testcase_16 AC 86 ms
102,596 KB
testcase_17 AC 71 ms
85,588 KB
testcase_18 AC 69 ms
85,032 KB
testcase_19 AC 67 ms
83,076 KB
testcase_20 AC 76 ms
91,696 KB
testcase_21 AC 80 ms
100,900 KB
testcase_22 AC 80 ms
100,508 KB
testcase_23 AC 88 ms
103,448 KB
testcase_24 AC 78 ms
99,036 KB
testcase_25 AC 79 ms
100,636 KB
testcase_26 AC 78 ms
99,280 KB
testcase_27 AC 79 ms
100,908 KB
testcase_28 AC 81 ms
99,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

for _ in [0] * int(input()):
    n = int(input())
    a = list(map(int, input().split()))
    if(2 not in a):
        print("No")
        continue
    dirs = [0] * n
    start = a.index(2)
    for i in range(n):
        k = (start + i) % n
        l = (k - 1) % n
        if(a[k] == 2):
            dirs[k], dirs[l] = 1, 0
        elif(a[k] == 0):
            dirs[k], dirs[l] = 0, 1
        else:
            dirs[k] = dirs[l]
    for i in range(n):
        j = (i - 1) % n
        if(a[i] == 2 and (dirs[i], dirs[j]) != (1, 0)):
            print("No")
            break
        elif(a[i] == 0 and (dirs[i], dirs[j]) != (0, 1)):
            print("No")
            break
        elif(a[i] == 1 and dirs[i] != dirs[j]):
            print("No")
            break
    else:
        print("Yes")
0