結果

問題 No.2343 (l+r)/2
ユーザー miya145592miya145592
提出日時 2023-06-10 00:43:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 86,016 KB
最終ジャッジ日時 2024-06-10 15:34:18
合計ジャッジ時間 2,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 544 ms
76,872 KB
testcase_02 AC 91 ms
76,288 KB
testcase_03 AC 186 ms
77,532 KB
testcase_04 AC 52 ms
74,112 KB
testcase_05 AC 43 ms
63,872 KB
testcase_06 AC 42 ms
62,592 KB
testcase_07 AC 62 ms
76,800 KB
testcase_08 AC 62 ms
76,160 KB
testcase_09 AC 60 ms
76,512 KB
testcase_10 AC 47 ms
64,384 KB
testcase_11 AC 61 ms
80,128 KB
testcase_12 AC 58 ms
75,904 KB
testcase_13 AC 53 ms
70,272 KB
testcase_14 AC 66 ms
86,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int, input().split()))

    if N==1:
        print("No")
        continue

    if A[0]!=A[-1]:
        print("Yes")
        continue

    flag = 0
    for i in range(N-1):
        if A[i]==A[i+1]==(1-A[0]):
            flag = 1
            break
    if flag:
        print("Yes")
        continue

    cnt = 0
    for i in range(N):
        if A[i]==(1-A[0]):
            cnt+=1
    if cnt>=4:
        print("Yes")
    else:
        print("No")
0