結果

問題 No.2518 Adjacent Larger
ユーザー 👑 KA37RIKA37RI
提出日時 2023-10-28 00:44:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,716 KB
最終ジャッジ日時 2024-09-25 15:50:56
合計ジャッジ時間 3,865 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 152 ms
10,624 KB
testcase_02 AC 152 ms
10,624 KB
testcase_03 AC 155 ms
10,624 KB
testcase_04 AC 155 ms
10,624 KB
testcase_05 AC 152 ms
10,752 KB
testcase_06 AC 56 ms
10,624 KB
testcase_07 AC 58 ms
10,752 KB
testcase_08 AC 57 ms
10,624 KB
testcase_09 AC 57 ms
10,624 KB
testcase_10 AC 58 ms
10,624 KB
testcase_11 AC 49 ms
10,624 KB
testcase_12 AC 51 ms
10,624 KB
testcase_13 AC 49 ms
10,880 KB
testcase_14 AC 47 ms
10,752 KB
testcase_15 AC 49 ms
10,880 KB
testcase_16 AC 131 ms
15,716 KB
testcase_17 AC 87 ms
13,632 KB
testcase_18 AC 90 ms
13,184 KB
testcase_19 AC 77 ms
12,932 KB
testcase_20 AC 103 ms
14,344 KB
testcase_21 AC 88 ms
15,520 KB
testcase_22 AC 87 ms
15,652 KB
testcase_23 AC 133 ms
15,648 KB
testcase_24 AC 123 ms
15,464 KB
testcase_25 AC 127 ms
15,652 KB
testcase_26 AC 128 ms
15,648 KB
testcase_27 AC 93 ms
15,648 KB
testcase_28 AC 130 ms
15,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve(n, a):
	left = [False] * n
	right = [False] * n
	try:
		idx2 = a.index(2)
	except ValueError:
		return False
	left[idx2] = True
	right[idx2] = True
	for i in range(idx2 + 1, idx2 + n):
		j = i % n
		left[j] = not right[j-1]
		r = a[j] - left[j]
		if r < 0 or r > 1:
			return False
		else:
			right[j] = (r == 1)
	return left[idx2] ^ right[idx2-1]

t = int(input())
for _ in range(t):
	n = int(input())
	a = [int(x) for x in input().split()]
	print("Yes" if solve(n, a) else "No")
0