結果

問題 No.2343 (l+r)/2
ユーザー titiatitia
提出日時 2023-06-10 02:42:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,745 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,976 KB
最終ジャッジ日時 2024-06-10 16:31:38
合計ジャッジ時間 3,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 1,745 ms
10,752 KB
testcase_02 AC 39 ms
10,624 KB
testcase_03 AC 247 ms
10,624 KB
testcase_04 AC 61 ms
12,160 KB
testcase_05 AC 39 ms
11,392 KB
testcase_06 AC 40 ms
11,264 KB
testcase_07 AC 75 ms
11,136 KB
testcase_08 AC 91 ms
11,380 KB
testcase_09 AC 64 ms
11,392 KB
testcase_10 AC 44 ms
11,264 KB
testcase_11 AC 78 ms
12,596 KB
testcase_12 AC 54 ms
12,032 KB
testcase_13 AC 51 ms
11,648 KB
testcase_14 AC 98 ms
12,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    if A[0]==1:
        for i in range(N):
            A[i]^=1

    now=1
    for i in range(1,N):
        if A[i]!=A[i-1]:
            now+=1

    if now%2==0 or now>=9:
        print("Yes")
        continue

    flag=0

    for i in range(N-1):
        if A[i]==A[i+1]==1:
            flag=1

    if flag==1:
        print("Yes")
        continue

    print("No")
0