結果

問題 No.1042 愚直大学
ユーザー maspymaspy
提出日時 2020-05-01 22:49:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,984 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 119,952 KB
最終ジャッジ日時 2024-12-25 13:45:51
合計ジャッジ時間 39,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,984 ms
66,948 KB
testcase_01 AC 1,314 ms
67,464 KB
testcase_02 AC 1,335 ms
67,348 KB
testcase_03 AC 1,351 ms
67,464 KB
testcase_04 AC 1,358 ms
67,572 KB
testcase_05 AC 1,354 ms
67,320 KB
testcase_06 AC 1,336 ms
67,080 KB
testcase_07 AC 1,329 ms
67,832 KB
testcase_08 AC 1,311 ms
67,704 KB
testcase_09 AC 1,317 ms
67,088 KB
testcase_10 AC 1,317 ms
67,580 KB
testcase_11 AC 1,330 ms
67,592 KB
testcase_12 AC 1,342 ms
67,576 KB
testcase_13 AC 1,313 ms
67,844 KB
testcase_14 AC 1,346 ms
67,580 KB
testcase_15 AC 1,323 ms
67,716 KB
testcase_16 AC 1,333 ms
67,860 KB
testcase_17 AC 1,321 ms
67,084 KB
testcase_18 AC 1,325 ms
67,192 KB
testcase_19 AC 1,654 ms
67,700 KB
testcase_20 AC 1,397 ms
67,704 KB
testcase_21 AC 1,301 ms
67,716 KB
testcase_22 AC 1,300 ms
67,080 KB
testcase_23 AC 1,335 ms
67,588 KB
testcase_24 AC 1,328 ms
119,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.optimize import *
from math import log2
P,Q=map(int,input().split())

def f(x):
    return x * x - Q * x * log2(x) - P

x = newton(f, x0=10**20, maxiter=1000)
print(x)
0