結果

問題 No.2518 Adjacent Larger
ユーザー flygonflygon
提出日時 2023-10-27 21:45:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 864 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 148,176 KB
最終ジャッジ日時 2024-09-25 13:51:13
合計ジャッジ時間 4,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,376 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 AC 78 ms
76,404 KB
testcase_12 AC 79 ms
75,932 KB
testcase_13 AC 76 ms
76,560 KB
testcase_14 AC 75 ms
76,036 KB
testcase_15 AC 75 ms
76,184 KB
testcase_16 AC 158 ms
123,040 KB
testcase_17 AC 107 ms
99,840 KB
testcase_18 AC 105 ms
99,528 KB
testcase_19 AC 101 ms
99,080 KB
testcase_20 AC 114 ms
102,524 KB
testcase_21 AC 165 ms
120,156 KB
testcase_22 AC 163 ms
121,068 KB
testcase_23 AC 159 ms
122,384 KB
testcase_24 AC 123 ms
148,176 KB
testcase_25 AC 113 ms
126,564 KB
testcase_26 AC 119 ms
133,868 KB
testcase_27 AC 157 ms
129,092 KB
testcase_28 AC 156 ms
129,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

def sol():
    n = int(input())
    a = list(map(int,input().split()))
    a = a+a
    ok = 1
    for i in range(2):
        lr = [[]]
        for i in range(2*n):
            if a[i] == 0:
                lr.append([])
            else:
                lr[-1].append(a[i])
        if len(lr) == 1:
            ok = 0
        for i in range(len(lr)):
            if lr[i].count(2) >= 2:
                ok = 0
        for i in range(2*n):
            if a[i] == 0:
                a[i] = 2
            if a[i] == 2:
                a[i] = 0
    print('Yes') if ok else print('No')
    return 


T = int(input())
for i in range(T):
    sol()
0