結果

問題 No.863 計算量
ユーザー mousemoodmousemood
提出日時 2019-09-16 18:19:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 104 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 10,488 KB
実行使用メモリ 29,484 KB
最終ジャッジ日時 2023-09-21 08:00:33
合計ジャッジ時間 3,053 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
29,320 KB
testcase_01 AC 128 ms
29,304 KB
testcase_02 AC 127 ms
29,356 KB
testcase_03 AC 135 ms
29,400 KB
testcase_04 AC 130 ms
29,416 KB
testcase_05 AC 131 ms
29,368 KB
testcase_06 AC 129 ms
29,264 KB
testcase_07 AC 129 ms
29,304 KB
testcase_08 AC 130 ms
29,484 KB
testcase_09 AC 129 ms
29,448 KB
testcase_10 AC 129 ms
29,248 KB
testcase_11 AC 131 ms
29,304 KB
testcase_12 AC 130 ms
29,204 KB
testcase_13 AC 131 ms
29,384 KB
testcase_14 AC 130 ms
29,364 KB
testcase_15 AC 127 ms
29,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

A = int(input())
B = int(input())

print(int(np.round(np.log(B / A) / np.log(40))))
0