結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー akanayaakanaya
提出日時 2020-03-22 17:16:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 495 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 44,056 KB
最終ジャッジ日時 2024-06-07 01:26:07
合計ジャッジ時間 14,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 483 ms
44,036 KB
testcase_01 AC 473 ms
43,408 KB
testcase_02 AC 485 ms
43,660 KB
testcase_03 AC 474 ms
43,924 KB
testcase_04 AC 487 ms
44,052 KB
testcase_05 AC 491 ms
43,776 KB
testcase_06 AC 494 ms
43,676 KB
testcase_07 AC 487 ms
43,900 KB
testcase_08 AC 484 ms
44,028 KB
testcase_09 AC 481 ms
43,640 KB
testcase_10 AC 477 ms
43,644 KB
testcase_11 AC 483 ms
44,056 KB
testcase_12 AC 485 ms
43,780 KB
testcase_13 AC 477 ms
43,788 KB
testcase_14 AC 490 ms
43,664 KB
testcase_15 AC 489 ms
43,652 KB
testcase_16 AC 492 ms
43,772 KB
testcase_17 AC 479 ms
43,648 KB
testcase_18 AC 495 ms
43,648 KB
testcase_19 AC 488 ms
43,904 KB
testcase_20 AC 483 ms
43,664 KB
testcase_21 AC 475 ms
43,796 KB
testcase_22 AC 480 ms
43,780 KB
testcase_23 AC 494 ms
43,924 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