結果

問題 No.2343 (l+r)/2
ユーザー hiro1729hiro1729
提出日時 2024-09-08 16:18:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 88,004 KB
最終ジャッジ日時 2024-09-08 16:18:56
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,508 KB
testcase_01 AC 624 ms
77,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 55 ms
74,880 KB
testcase_05 AC 47 ms
65,540 KB
testcase_06 AC 44 ms
63,272 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 48 ms
64,436 KB
testcase_11 AC 63 ms
81,364 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 68 ms
88,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	N = int(input())
	A = list(map(int, input().split()))
	if A[0] != A[-1]:
		print("Yes")
	else:
		print("Yes" if any(A[i] == A[i + 1] == 1 - A[0] for i in range(1, N - 2)) else "No")
0