結果

問題 No.2343 (l+r)/2
ユーザー とろちゃ
提出日時 2023-06-09 21:10:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 11,756 KB
最終ジャッジ日時 2025-01-02 01:52:36
合計ジャッジ時間 2,805 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    A = "".join(input().split())
    cnt1 = A.count("1")
    cnt0 = A.count("0")
    if cnt1 > cnt0:
        if cnt1 - cnt0 <= A.count("11"):
            print("Yes")
        else:
            print("No")
    elif cnt1 < cnt0:
        if cnt0 - cnt1 <= A.count("00"):
            print("Yes")
        else:
            print("No")
    else:
        print("Yes")
0