結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー Arow570
提出日時 2022-01-17 11:51:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 135 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-23 12:44:44
合計ジャッジ時間 1,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
N_log = math.log(N, 2)
i_N_log = int(N_log)
if((N_log - i_N_log) != 0):
    i_N_log += 1

print(i_N_log)
0