結果

問題 No.2518 Adjacent Larger
ユーザー rlangevinrlangevin
提出日時 2023-10-27 21:48:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 117,648 KB
最終ジャッジ日時 2024-09-25 13:54:17
合計ジャッジ時間 3,469 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,856 KB
testcase_01 AC 121 ms
77,596 KB
testcase_02 AC 131 ms
77,648 KB
testcase_03 AC 124 ms
77,244 KB
testcase_04 AC 132 ms
77,836 KB
testcase_05 AC 126 ms
77,352 KB
testcase_06 AC 73 ms
76,620 KB
testcase_07 AC 72 ms
76,660 KB
testcase_08 AC 74 ms
76,460 KB
testcase_09 AC 71 ms
76,332 KB
testcase_10 AC 73 ms
76,372 KB
testcase_11 AC 54 ms
72,672 KB
testcase_12 AC 54 ms
74,544 KB
testcase_13 AC 61 ms
75,592 KB
testcase_14 AC 53 ms
72,924 KB
testcase_15 AC 52 ms
72,908 KB
testcase_16 AC 86 ms
111,740 KB
testcase_17 AC 68 ms
89,064 KB
testcase_18 AC 67 ms
90,216 KB
testcase_19 AC 62 ms
85,820 KB
testcase_20 AC 74 ms
98,092 KB
testcase_21 AC 84 ms
111,272 KB
testcase_22 AC 83 ms
110,832 KB
testcase_23 AC 87 ms
112,040 KB
testcase_24 AC 71 ms
96,844 KB
testcase_25 AC 71 ms
96,604 KB
testcase_26 AC 71 ms
96,668 KB
testcase_27 AC 90 ms
117,648 KB
testcase_28 AC 91 ms
117,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T = int(input())
for _ in range(T):
    N = int(input())
    B = list(map(int, input().split()))
    A = []
    for b in B:
        if b != 1:
            A.append(b)
    N = len(A)
    if 2 not in A or 0 not in A:
        print("No")
        continue
    A = [A[-1]] + A + [A[0]]
    flag = 1
    for i in range(1, N + 1):
        if A[i] == 2 and (A[i - 1] == 2 or A[i + 1] == 2):
            flag = 0
            break
        if A[i] != 0 and (A[i - 1] == 2 and A[i + 1] == 2):
            flag = 0
            break
        if A[i] == 0 and (A[i - 1] == 0 or A[i + 1] == 0):
            flag = 0
            break
        if A[i] != 2 and (A[i - 1] == 0 and A[i + 1] == 0):
            flag = 0
            break
        
    print("Yes") if flag else print("No") 
    
0