結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー splash9494
提出日時 2020-05-03 23:36:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 109 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 53,616 KB
最終ジャッジ日時 2024-06-23 04:47:34
合計ジャッジ時間 1,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
input = sys.stdin.buffer.readline

N = int(input())

print(math.ceil((math.log2(N))))
0