結果

問題 No.2063 ±2^k operations (easy)
ユーザー 👑 Kazun
提出日時 2022-09-02 21:23:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 551 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 72,828 KB
最終ジャッジ日時 2024-11-16 02:12:13
合計ジャッジ時間 1,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

def Run_Length_Encoding(S):
    """ Run Length 圧縮

    S: 列
    """
    if not S:
        return []

    R=[[S[0],1]]

    for i in range(1,len(S)):
        if R[-1][0]==S[i]:
            R[-1][1]+=1
        else:
            R.append([S[i],1])

    return R
#==================================================
def solve():
    N=input()
    R=Run_Length_Encoding(N)

    if R==[["1",1],["0",len(N)-1]]:
        return False

    cnt=0
    for i,_ in R:
        if i=="1":
            cnt+=1
    return cnt<=2

print("Yes" if solve() else "No")
0