結果

問題 No.2343 (l+r)/2
ユーザー miya145592miya145592
提出日時 2023-06-10 00:43:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 722 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 86,796 KB
最終ジャッジ日時 2025-01-02 07:20:37
合計ジャッジ時間 3,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 571 ms
76,884 KB
testcase_02 AC 96 ms
76,964 KB
testcase_03 AC 214 ms
78,156 KB
testcase_04 AC 55 ms
75,804 KB
testcase_05 AC 44 ms
64,624 KB
testcase_06 AC 43 ms
63,456 KB
testcase_07 AC 62 ms
77,448 KB
testcase_08 AC 56 ms
76,692 KB
testcase_09 AC 56 ms
76,984 KB
testcase_10 AC 44 ms
65,356 KB
testcase_11 AC 56 ms
82,528 KB
testcase_12 AC 52 ms
76,540 KB
testcase_13 AC 47 ms
71,692 KB
testcase_14 AC 60 ms
86,796 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