結果

問題 No.1042 愚直大学
ユーザー strangerxxxstrangerxxx
提出日時 2021-02-03 12:04:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 168 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 124,940 KB
最終ジャッジ日時 2024-06-30 00:16:25
合計ジャッジ時間 38,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,316 ms
67,616 KB
testcase_02 AC 1,333 ms
67,716 KB
testcase_03 AC 1,323 ms
67,352 KB
testcase_04 AC 1,296 ms
67,844 KB
testcase_05 AC 1,315 ms
67,344 KB
testcase_06 AC 1,321 ms
67,604 KB
testcase_07 AC 1,338 ms
67,784 KB
testcase_08 AC 1,299 ms
67,580 KB
testcase_09 AC 1,295 ms
67,476 KB
testcase_10 AC 1,280 ms
67,220 KB
testcase_11 AC 1,269 ms
67,728 KB
testcase_12 AC 1,303 ms
67,604 KB
testcase_13 AC 1,282 ms
67,708 KB
testcase_14 AC 1,304 ms
67,200 KB
testcase_15 AC 1,317 ms
67,860 KB
testcase_16 AC 1,326 ms
67,708 KB
testcase_17 AC 1,316 ms
67,448 KB
testcase_18 AC 1,295 ms
67,344 KB
testcase_19 AC 1,319 ms
67,460 KB
testcase_20 AC 1,336 ms
67,716 KB
testcase_21 AC 1,314 ms
67,720 KB
testcase_22 AC 1,366 ms
67,220 KB
testcase_23 AC 1,342 ms
67,208 KB
testcase_24 AC 1,335 ms
124,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.optimize import bisect
import numpy as np
def f(x):
    return x ** 2 - q * x * np.log2(x) - p
p, q = map(int, input().split())
print(bisect(f, 1, 10 ** 15))
0