結果

問題 No.2518 Adjacent Larger
ユーザー hato336hato336
提出日時 2023-10-28 09:14:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 958 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 117,376 KB
最終ジャッジ日時 2024-09-25 16:12:49
合計ジャッジ時間 6,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
85,804 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 199 ms
90,496 KB
testcase_07 AC 209 ms
90,908 KB
testcase_08 AC 203 ms
90,496 KB
testcase_09 AC 200 ms
90,508 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 164 ms
89,984 KB
testcase_14 WA -
testcase_15 AC 168 ms
89,884 KB
testcase_16 AC 185 ms
117,252 KB
testcase_17 AC 169 ms
103,552 KB
testcase_18 AC 168 ms
103,764 KB
testcase_19 AC 166 ms
101,504 KB
testcase_20 AC 177 ms
108,288 KB
testcase_21 AC 172 ms
116,864 KB
testcase_22 AC 174 ms
116,864 KB
testcase_23 AC 184 ms
117,376 KB
testcase_24 AC 172 ms
117,116 KB
testcase_25 AC 177 ms
117,288 KB
testcase_26 AC 177 ms
117,204 KB
testcase_27 AC 177 ms
117,376 KB
testcase_28 AC 175 ms
116,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)


#alist = []
#s = input()
t = int(input())
for _ in range(t):
    n = int(input())
    alist = list(map(int,input().split()))
    if sum(alist) != n:
        print('No')
        continue
    c = 0
    for i in range(n):
        if alist[i] == 2:
            if alist[i-1] == 2 or alist[(i+1)%n] == 2:
                print('No')
                c = 1
                break
        if alist[i] == 1:
            if alist[i-1] == 2 and alist[(i+1)%n] == 2:
                print('No')
                c = 1
                break
        if alist[i] == 0:
            if alist[i-1] == 0 or alist[(i+1)%n] == 0:
                print('No')
                c = 1
                break
    if alist.count(2) == 0 or alist.count(0) == 0:
        print('No')
        c = 1
    if not c:
        print('Yes')
0