結果

問題 No.2518 Adjacent Larger
ユーザー lloyzlloyz
提出日時 2023-10-28 21:40:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 102,992 KB
最終ジャッジ日時 2024-09-25 16:36:35
合計ジャッジ時間 4,246 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,032 KB
testcase_01 AC 209 ms
78,532 KB
testcase_02 AC 219 ms
78,908 KB
testcase_03 AC 209 ms
79,252 KB
testcase_04 AC 228 ms
79,084 KB
testcase_05 AC 212 ms
78,672 KB
testcase_06 AC 104 ms
76,936 KB
testcase_07 AC 117 ms
76,696 KB
testcase_08 AC 120 ms
77,488 KB
testcase_09 AC 107 ms
76,508 KB
testcase_10 AC 108 ms
76,456 KB
testcase_11 AC 71 ms
75,696 KB
testcase_12 AC 69 ms
76,156 KB
testcase_13 AC 78 ms
75,628 KB
testcase_14 AC 64 ms
74,544 KB
testcase_15 AC 66 ms
74,240 KB
testcase_16 AC 91 ms
102,992 KB
testcase_17 AC 73 ms
87,376 KB
testcase_18 AC 74 ms
87,072 KB
testcase_19 AC 70 ms
83,616 KB
testcase_20 AC 81 ms
91,660 KB
testcase_21 AC 83 ms
101,588 KB
testcase_22 AC 83 ms
101,268 KB
testcase_23 AC 90 ms
102,856 KB
testcase_24 AC 80 ms
99,700 KB
testcase_25 AC 84 ms
100,464 KB
testcase_26 AC 86 ms
101,796 KB
testcase_27 AC 81 ms
102,148 KB
testcase_28 AC 83 ms
101,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n = int(input())
    A = list(map(int, input().split()))
    if 2 not in A:
        print("No")
        continue
    idx = A.index(2)
    D = [None for _ in range(n)]
    for i in range(n):
        j = (i + idx) % n
        if A[j] == 2:
            to = '>'
        elif A[j] == 0:
            to = '<'
        else:
            to = D[(j - 1) % n]
        D[j] = to
    flag = True
    for i in range(n):
        if A[i] != (D[(i - 1) % n] == '<') + (D[i] == '>'):
            flag = False
            break
    if flag:
        print("Yes")
    else:
        print("No")
0