結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー akanayaakanaya
提出日時 2020-03-22 17:16:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 10,432 KB
実行使用メモリ 29,732 KB
最終ジャッジ日時 2023-08-26 06:09:45
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
29,504 KB
testcase_01 AC 118 ms
29,604 KB
testcase_02 AC 119 ms
29,652 KB
testcase_03 AC 120 ms
29,500 KB
testcase_04 AC 116 ms
29,544 KB
testcase_05 AC 120 ms
29,584 KB
testcase_06 AC 118 ms
29,648 KB
testcase_07 AC 118 ms
29,504 KB
testcase_08 AC 122 ms
29,568 KB
testcase_09 AC 124 ms
29,672 KB
testcase_10 AC 126 ms
29,600 KB
testcase_11 AC 124 ms
29,568 KB
testcase_12 AC 122 ms
29,644 KB
testcase_13 AC 119 ms
29,668 KB
testcase_14 AC 117 ms
29,512 KB
testcase_15 AC 118 ms
29,556 KB
testcase_16 AC 121 ms
29,660 KB
testcase_17 AC 121 ms
29,552 KB
testcase_18 AC 127 ms
29,500 KB
testcase_19 AC 127 ms
29,732 KB
testcase_20 AC 119 ms
29,624 KB
testcase_21 AC 114 ms
29,536 KB
testcase_22 AC 119 ms
29,712 KB
testcase_23 AC 117 ms
29,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy as np
import queue
import sys 

input = sys.stdin.readline
# sys.setrecursionlimit(25000)

n = int(input())

m = math.ceil(math.log2(n))

print(m)


0