結果

問題 No.642 Two Operations No.1
ユーザー はむ吉🐹はむ吉🐹
提出日時 2018-02-02 21:52:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 53,872 KB
最終ジャッジ日時 2024-06-10 01:16:22
合計ジャッジ時間 1,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,612 KB
testcase_01 AC 45 ms
52,336 KB
testcase_02 AC 35 ms
52,264 KB
testcase_03 AC 39 ms
52,668 KB
testcase_04 AC 36 ms
52,916 KB
testcase_05 AC 36 ms
52,312 KB
testcase_06 AC 32 ms
52,244 KB
testcase_07 AC 34 ms
52,488 KB
testcase_08 AC 33 ms
51,816 KB
testcase_09 AC 33 ms
53,000 KB
testcase_10 AC 33 ms
53,872 KB
testcase_11 AC 32 ms
53,500 KB
testcase_12 AC 32 ms
52,880 KB
testcase_13 AC 34 ms
53,308 KB
testcase_14 AC 32 ms
52,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3


def min_num_ops(n):
    assert 1 <= n
    res = 0
    while n > 1:
        res += 1
        d, m = divmod(n, 2)
        if m == 0:
            n = d
        else:
            n += 1
    return res


def main():
    print(min_num_ops(int(input())))


if __name__ == '__main__':
    main()
0