結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 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,880 KB
testcase_12 AC 50 ms
10,880 KB
testcase_13 AC 48 ms
10,880 KB
testcase_14 AC 47 ms
10,880 KB
testcase_15 AC 49 ms
10,880 KB
testcase_16 AC 129 ms
15,656 KB
testcase_17 AC 85 ms
13,192 KB
testcase_18 AC 85 ms
13,340 KB
testcase_19 AC 76 ms
12,952 KB
testcase_20 AC 102 ms
13,808 KB
testcase_21 AC 89 ms
15,444 KB
testcase_22 AC 84 ms
15,276 KB
testcase_23 AC 130 ms
15,316 KB
testcase_24 AC 120 ms
15,084 KB
testcase_25 AC 126 ms
15,444 KB
testcase_26 AC 127 ms
15,320 KB
testcase_27 AC 91 ms
15,448 KB
testcase_28 AC 132 ms
15,316 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