結果

問題 No.2518 Adjacent Larger
ユーザー ああいいああいい
提出日時 2023-11-11 22:26:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 1,070 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-09-26 02:54:17
合計ジャッジ時間 4,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,688 KB
testcase_01 AC 305 ms
81,272 KB
testcase_02 AC 214 ms
78,872 KB
testcase_03 AC 254 ms
80,320 KB
testcase_04 AC 218 ms
79,100 KB
testcase_05 AC 215 ms
79,248 KB
testcase_06 AC 107 ms
77,192 KB
testcase_07 AC 102 ms
76,988 KB
testcase_08 AC 105 ms
76,852 KB
testcase_09 AC 106 ms
76,960 KB
testcase_10 AC 99 ms
76,672 KB
testcase_11 AC 52 ms
71,168 KB
testcase_12 AC 54 ms
73,472 KB
testcase_13 AC 55 ms
73,572 KB
testcase_14 AC 49 ms
70,528 KB
testcase_15 AC 49 ms
71,296 KB
testcase_16 AC 77 ms
101,632 KB
testcase_17 AC 62 ms
83,968 KB
testcase_18 AC 61 ms
84,224 KB
testcase_19 AC 58 ms
80,768 KB
testcase_20 AC 69 ms
90,624 KB
testcase_21 AC 73 ms
100,992 KB
testcase_22 AC 71 ms
100,992 KB
testcase_23 AC 77 ms
102,016 KB
testcase_24 AC 73 ms
100,480 KB
testcase_25 AC 74 ms
101,632 KB
testcase_26 AC 75 ms
102,016 KB
testcase_27 AC 74 ms
102,016 KB
testcase_28 AC 74 ms
100,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N = int(input())
    A = list(map(int,input().split()))



    dp = [0] * 3
    for a in A:
        dp[a] +=1

    if N == 2:
        if dp[0] == 1 and dp[1] == 0 and dp[-1] == 1:
            print('Yes')
        else:
            print('No')
        continue
    
    flag = True
    for i in range(3):
        if i == 1:continue
        if dp[i] == 0:
            flag = False
    if not flag:
        print('No')
        continue
    n = 0
    for i in range(N):
        if A[i] == 0:
            n = i
            A = A[i:] + A[:i]
            break
    now = 1
    flag = True
    for i in range(1,N):
        if A[i] == 0:
            if now == 1:
                flag = False
                break
            else:
                now = 1
        elif A[i] == 1:
            pass
        else:
            if now == -1:
                flag = False
                break
            else:now = -1
    if now == 1:
        flag = False
    if flag:
        print('Yes')
    else:
        print('No')
        
            
0