結果

問題 No.1042 愚直大学
ユーザー maspymaspy
提出日時 2020-05-01 22:49:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,481 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 68,228 KB
最終ジャッジ日時 2024-06-07 11:09:54
合計ジャッジ時間 6,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,457 ms
67,864 KB
testcase_01 AC 1,449 ms
67,480 KB
testcase_02 AC 1,460 ms
68,144 KB
testcase_03 AC 1,453 ms
67,720 KB
testcase_04 AC 1,454 ms
68,228 KB
testcase_05 AC 1,454 ms
67,732 KB
testcase_06 AC 1,478 ms
67,596 KB
testcase_07 AC 1,476 ms
67,848 KB
testcase_08 AC 1,468 ms
67,220 KB
testcase_09 AC 1,452 ms
67,868 KB
testcase_10 AC 1,457 ms
67,736 KB
testcase_11 AC 1,459 ms
67,860 KB
testcase_12 AC 1,467 ms
67,728 KB
testcase_13 AC 1,450 ms
67,208 KB
testcase_14 AC 1,469 ms
67,728 KB
testcase_15 AC 1,462 ms
67,848 KB
testcase_16 AC 1,457 ms
67,864 KB
testcase_17 AC 1,453 ms
67,984 KB
testcase_18 AC 1,452 ms
68,120 KB
testcase_19 AC 1,452 ms
67,972 KB
testcase_20 AC 1,481 ms
67,344 KB
testcase_21 AC 1,467 ms
67,364 KB
testcase_22 AC 1,454 ms
67,488 KB
testcase_23 AC 1,475 ms
67,996 KB
testcase_24 AC 1,463 ms
68,000 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