結果

問題 No.2343 (l+r)/2
ユーザー hiro1729hiro1729
提出日時 2024-09-08 16:20:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 89,052 KB
最終ジャッジ日時 2024-09-08 16:20:58
合計ジャッジ時間 2,626 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,760 KB
testcase_01 AC 616 ms
77,192 KB
testcase_02 AC 92 ms
76,348 KB
testcase_03 AC 188 ms
77,552 KB
testcase_04 AC 55 ms
75,128 KB
testcase_05 AC 47 ms
65,340 KB
testcase_06 AC 45 ms
63,372 KB
testcase_07 AC 63 ms
76,692 KB
testcase_08 AC 65 ms
76,364 KB
testcase_09 AC 62 ms
76,112 KB
testcase_10 AC 46 ms
65,412 KB
testcase_11 AC 62 ms
81,288 KB
testcase_12 AC 57 ms
78,532 KB
testcase_13 AC 53 ms
70,312 KB
testcase_14 AC 67 ms
89,052 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 - A[0]) >= 4 else "No"))
0