結果

問題 No.2518 Adjacent Larger
ユーザー tassei903tassei903
提出日時 2023-10-27 22:17:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 99,168 KB
最終ジャッジ日時 2024-09-25 14:19:35
合計ジャッジ時間 3,427 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,876 KB
testcase_01 AC 110 ms
76,680 KB
testcase_02 AC 119 ms
77,420 KB
testcase_03 AC 110 ms
77,672 KB
testcase_04 AC 108 ms
76,736 KB
testcase_05 AC 107 ms
76,832 KB
testcase_06 AC 78 ms
76,432 KB
testcase_07 AC 76 ms
76,564 KB
testcase_08 AC 77 ms
76,628 KB
testcase_09 AC 68 ms
73,800 KB
testcase_10 AC 75 ms
76,952 KB
testcase_11 AC 51 ms
69,456 KB
testcase_12 AC 51 ms
70,252 KB
testcase_13 AC 52 ms
69,356 KB
testcase_14 AC 51 ms
68,900 KB
testcase_15 AC 50 ms
69,760 KB
testcase_16 AC 79 ms
98,060 KB
testcase_17 AC 63 ms
80,876 KB
testcase_18 AC 63 ms
81,564 KB
testcase_19 AC 62 ms
79,740 KB
testcase_20 AC 68 ms
87,468 KB
testcase_21 AC 73 ms
97,460 KB
testcase_22 AC 73 ms
96,300 KB
testcase_23 AC 78 ms
98,692 KB
testcase_24 AC 76 ms
96,640 KB
testcase_25 AC 80 ms
99,168 KB
testcase_26 AC 79 ms
98,632 KB
testcase_27 AC 77 ms
97,492 KB
testcase_28 AC 77 ms
97,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
for _ in range(ni()):
    n = ni()
    a = na()
    if not (0 in a and 2 in a):
        No()
        continue
    
    x = a.index(2)
    z = 2
    x = (x+1) % n
    for i in range(n):
        if a[x] == z:
            No()
            break
        elif a[x] == 1:
            pass
        else:
            z = a[x]
        x = (x + 1) % n
    else:
        Yes()
0