結果

問題 No.2063 ±2^k operations (easy)
ユーザー KazunKazun
提出日時 2022-09-02 21:25:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 70,696 KB
最終ジャッジ日時 2024-11-16 02:14:41
合計ジャッジ時間 1,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,920 KB
testcase_01 AC 33 ms
52,516 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 33 ms
52,400 KB
testcase_04 AC 33 ms
52,868 KB
testcase_05 AC 34 ms
52,400 KB
testcase_06 AC 33 ms
52,920 KB
testcase_07 AC 33 ms
52,348 KB
testcase_08 AC 33 ms
52,112 KB
testcase_09 AC 41 ms
53,428 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 36 ms
52,360 KB
testcase_12 AC 37 ms
52,012 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,100 KB
testcase_15 AC 38 ms
52,216 KB
testcase_16 AC 36 ms
52,768 KB
testcase_17 AC 42 ms
60,380 KB
testcase_18 AC 41 ms
60,396 KB
testcase_19 AC 38 ms
59,700 KB
testcase_20 AC 38 ms
60,448 KB
testcase_21 AC 40 ms
59,300 KB
testcase_22 AC 46 ms
70,604 KB
testcase_23 AC 47 ms
70,696 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