結果

問題 No.2343 (l+r)/2
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-06-16 09:58:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 85,688 KB
最終ジャッジ日時 2024-06-24 04:24:30
合計ジャッジ時間 2,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,336 KB
testcase_01 AC 235 ms
77,656 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 70 ms
78,028 KB
testcase_05 AC 54 ms
64,152 KB
testcase_06 AC 59 ms
66,360 KB
testcase_07 WA -
testcase_08 AC 75 ms
76,824 KB
testcase_09 AC 66 ms
76,768 KB
testcase_10 WA -
testcase_11 AC 69 ms
80,172 KB
testcase_12 AC 66 ms
75,960 KB
testcase_13 AC 60 ms
70,328 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

TT = int(stdin.readline())

for loop in range(TT):

    N = int(stdin.readline())
    A = list(map(int,stdin.readline().split()))

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

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

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

        if sum(A) >= 3:
            flag = True

        if flag:
            print ("Yes")
        else:
            print ("No")
0