結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー 67oYG9nh2YMmIci67oYG9nh2YMmIci
提出日時 2020-06-25 20:39:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 66 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 10,704 KB
実行使用メモリ 29,536 KB
最終ジャッジ日時 2023-09-16 22:57:41
合計ジャッジ時間 4,631 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
29,528 KB
testcase_01 AC 141 ms
29,384 KB
testcase_02 AC 139 ms
29,432 KB
testcase_03 AC 142 ms
29,472 KB
testcase_04 AC 140 ms
29,512 KB
testcase_05 AC 142 ms
29,392 KB
testcase_06 AC 142 ms
29,444 KB
testcase_07 AC 142 ms
29,456 KB
testcase_08 AC 142 ms
29,508 KB
testcase_09 AC 140 ms
29,504 KB
testcase_10 AC 139 ms
29,504 KB
testcase_11 AC 137 ms
29,376 KB
testcase_12 AC 139 ms
29,452 KB
testcase_13 AC 145 ms
29,488 KB
testcase_14 AC 141 ms
29,440 KB
testcase_15 AC 141 ms
29,472 KB
testcase_16 AC 139 ms
29,384 KB
testcase_17 AC 140 ms
29,396 KB
testcase_18 AC 139 ms
29,444 KB
testcase_19 AC 141 ms
29,460 KB
testcase_20 AC 138 ms
29,508 KB
testcase_21 AC 140 ms
29,536 KB
testcase_22 AC 141 ms
29,348 KB
testcase_23 AC 141 ms
29,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np 
N=int(input())
print(int(np.ceil(np.log2(N))))
0