結果

問題 No.884 Eat and Add
ユーザー NagisaNagisa
提出日時 2019-09-13 22:54:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 75,008 KB
最終ジャッジ日時 2024-07-04 10:13:01
合計ジャッジ時間 1,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 65 ms
71,680 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 61 ms
68,736 KB
testcase_07 AC 57 ms
69,888 KB
testcase_08 AC 43 ms
52,736 KB
testcase_09 AC 39 ms
52,736 KB
testcase_10 AC 38 ms
51,456 KB
testcase_11 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def main():
    def input():
        return sys.stdin.readline()[:-1]
    N = input()
    ans = 0
    L = list(N.split("00"))
    for e in L:
        for k in range(len(e)):
            if e[k] == "1":
                ans += min(e[k:].count("1"),e[k:].count("0")+2)
                break
    print(ans)
if __name__ == '__main__':
    main()
0