結果

問題 No.2518 Adjacent Larger
ユーザー 👑 KA37RIKA37RI
提出日時 2023-10-28 00:36:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 15,604 KB
最終ジャッジ日時 2024-09-25 15:48:36
合計ジャッジ時間 3,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 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 48 ms
10,752 KB
testcase_12 AC 51 ms
10,752 KB
testcase_13 AC 49 ms
10,624 KB
testcase_14 AC 49 ms
10,752 KB
testcase_15 AC 50 ms
10,624 KB
testcase_16 AC 133 ms
15,604 KB
testcase_17 AC 89 ms
13,316 KB
testcase_18 AC 90 ms
13,340 KB
testcase_19 AC 80 ms
12,936 KB
testcase_20 AC 106 ms
13,808 KB
testcase_21 AC 86 ms
15,184 KB
testcase_22 AC 88 ms
15,320 KB
testcase_23 AC 136 ms
15,320 KB
testcase_24 AC 125 ms
15,080 KB
testcase_25 AC 130 ms
15,192 KB
testcase_26 AC 128 ms
15,320 KB
testcase_27 AC 93 ms
15,312 KB
testcase_28 AC 134 ms
15,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve(n, a):
	left = [False] * n
	right = [False] * n
	idx2 = -1
	for i in range(n):
		if a[i] == 2:
			idx2 = i
			break
	if idx2 == -1:
		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]
		if a[j] == 0 and left[j] or a[j] == 2 and not left[j]:
			return False
		right[j] = (a[j] - left[j]) > 0
	return True

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