結果

問題 No.2063 ±2^k operations (easy)
ユーザー 👑 KazunKazun
提出日時 2022-09-02 21:26:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 70,656 KB
最終ジャッジ日時 2024-04-27 20:51:14
合計ジャッジ時間 1,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 34 ms
51,456 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 32 ms
51,456 KB
testcase_06 AC 33 ms
51,968 KB
testcase_07 AC 32 ms
51,840 KB
testcase_08 AC 33 ms
52,480 KB
testcase_09 AC 33 ms
52,096 KB
testcase_10 AC 32 ms
51,840 KB
testcase_11 AC 31 ms
51,456 KB
testcase_12 AC 32 ms
51,840 KB
testcase_13 AC 37 ms
51,584 KB
testcase_14 AC 33 ms
51,968 KB
testcase_15 AC 34 ms
51,712 KB
testcase_16 AC 31 ms
51,584 KB
testcase_17 AC 37 ms
59,008 KB
testcase_18 AC 37 ms
59,392 KB
testcase_19 AC 38 ms
59,520 KB
testcase_20 AC 37 ms
59,008 KB
testcase_21 AC 36 ms
59,008 KB
testcase_22 AC 45 ms
70,656 KB
testcase_23 AC 44 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

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]] or R==[["1",1]]:
        return False

    if len(R)<=2 or N.count("1")==2:
        return True
    else:
        return False

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