結果

問題 No.2343 (l+r)/2
ユーザー hiro1729hiro1729
提出日時 2024-09-08 16:20:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 87,524 KB
最終ジャッジ日時 2024-09-08 16:20:31
合計ジャッジ時間 2,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,524 KB
testcase_01 AC 594 ms
77,216 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 56 ms
75,156 KB
testcase_05 AC 47 ms
65,068 KB
testcase_06 AC 46 ms
64,164 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 64 ms
81,568 KB
testcase_12 AC 58 ms
76,836 KB
testcase_13 AC 53 ms
69,988 KB
testcase_14 AC 71 ms
87,524 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 ("Yes" if A.count(1) >= 4 else "No"))
0