結果

問題 No.884 Eat and Add
ユーザー convexineqconvexineq
提出日時 2020-11-01 09:14:02
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 169 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 77,860 KB
最終ジャッジ日時 2024-07-22 05:39:12
合計ジャッジ時間 6,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 774 ms
76,672 KB
testcase_04 AC 754 ms
76,672 KB
testcase_05 AC 776 ms
77,056 KB
testcase_06 AC 846 ms
77,300 KB
testcase_07 AC 801 ms
76,800 KB
testcase_08 AC 822 ms
76,728 KB
testcase_09 TLE -
testcase_10 AC 37 ms
51,584 KB
testcase_11 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input(),2)
ans = 0
while N:
    if N&1==0:
        N >>= 1
    elif N&3==1:
        ans += 1
        N >>= 2
    else:
        ans += 1
        N += 1
print(ans)
0