結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー sdadssdads
提出日時 2018-11-20 14:28:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 10,732 KB
実行使用メモリ 7,984 KB
最終ジャッジ日時 2023-08-26 02:16:06
合計ジャッジ時間 1,671 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 16 ms
7,796 KB
testcase_02 AC 16 ms
7,836 KB
testcase_03 AC 15 ms
7,808 KB
testcase_04 WA -
testcase_05 AC 16 ms
7,800 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 16 ms
7,800 KB
testcase_12 AC 16 ms
7,800 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 15 ms
7,888 KB
testcase_16 AC 15 ms
7,756 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 16 ms
7,904 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def keisan(N, n ,i):
    p = N // n
    q = N % n
    if p == 1 and q == 0:
        return i
    elif N == p or p >= n:
        n *= 2
        i += 1
    elif p < n:
        n /= 2
        if p > q:
            N = p
        else:
            N = q
        i += 1
    i = keisan(N, n, i)
    return i

N = int(input())
n = 1

print(keisan(N, n, 0))
0