結果

問題 No.2343 (l+r)/2
ユーザー titiatitia
提出日時 2023-06-10 02:42:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,654 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 12,556 KB
最終ジャッジ日時 2025-01-02 09:11:12
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,112 KB
testcase_01 AC 1,654 ms
10,112 KB
testcase_02 AC 42 ms
10,112 KB
testcase_03 AC 244 ms
10,112 KB
testcase_04 AC 62 ms
11,476 KB
testcase_05 AC 41 ms
10,752 KB
testcase_06 AC 39 ms
10,624 KB
testcase_07 AC 76 ms
10,796 KB
testcase_08 AC 100 ms
10,752 KB
testcase_09 AC 71 ms
10,880 KB
testcase_10 AC 48 ms
10,752 KB
testcase_11 AC 92 ms
12,164 KB
testcase_12 AC 60 ms
11,600 KB
testcase_13 AC 57 ms
11,008 KB
testcase_14 AC 99 ms
12,556 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