結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー pajannatpajannat
提出日時 2021-04-04 23:51:13
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 64 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 87,244 KB
実行使用メモリ 71,932 KB
最終ジャッジ日時 2023-08-28 11:27:59
合計ジャッジ時間 3,276 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,664 KB
testcase_01 AC 70 ms
71,536 KB
testcase_02 AC 75 ms
71,400 KB
testcase_03 AC 73 ms
71,880 KB
testcase_04 AC 71 ms
71,808 KB
testcase_05 AC 71 ms
71,392 KB
testcase_06 AC 75 ms
71,512 KB
testcase_07 AC 73 ms
71,576 KB
testcase_08 AC 73 ms
71,624 KB
testcase_09 AC 74 ms
71,536 KB
testcase_10 AC 75 ms
71,848 KB
testcase_11 AC 72 ms
71,316 KB
testcase_12 AC 75 ms
71,596 KB
testcase_13 AC 73 ms
71,536 KB
testcase_14 AC 71 ms
71,308 KB
testcase_15 AC 71 ms
71,856 KB
testcase_16 AC 72 ms
71,632 KB
testcase_17 AC 71 ms
71,600 KB
testcase_18 AC 72 ms
71,932 KB
testcase_19 AC 74 ms
71,632 KB
testcase_20 AC 72 ms
71,876 KB
testcase_21 AC 72 ms
71,668 KB
testcase_22 AC 70 ms
71,812 KB
testcase_23 AC 71 ms
71,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())

print(math.ceil(math.log(N,2)))
0