結果

問題 No.1042 愚直大学
ユーザー maspymaspy
提出日時 2020-05-01 22:51:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 138 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 131,168 KB
最終ジャッジ日時 2024-12-31 13:36:36
合計ジャッジ時間 38,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,919 ms
68,112 KB
testcase_02 AC 1,226 ms
68,000 KB
testcase_03 AC 1,271 ms
68,016 KB
testcase_04 AC 1,256 ms
67,928 KB
testcase_05 AC 1,291 ms
67,892 KB
testcase_06 AC 1,273 ms
67,764 KB
testcase_07 AC 1,323 ms
67,880 KB
testcase_08 AC 1,302 ms
67,476 KB
testcase_09 AC 1,249 ms
67,492 KB
testcase_10 AC 1,268 ms
68,024 KB
testcase_11 AC 1,242 ms
67,744 KB
testcase_12 AC 1,244 ms
67,856 KB
testcase_13 AC 1,251 ms
67,380 KB
testcase_14 AC 1,253 ms
68,008 KB
testcase_15 AC 1,250 ms
67,996 KB
testcase_16 AC 1,240 ms
67,984 KB
testcase_17 AC 1,250 ms
67,868 KB
testcase_18 AC 1,251 ms
67,892 KB
testcase_19 AC 1,244 ms
67,872 KB
testcase_20 AC 1,302 ms
67,532 KB
testcase_21 AC 1,234 ms
67,480 KB
testcase_22 AC 1,255 ms
67,980 KB
testcase_23 AC 1,267 ms
67,512 KB
testcase_24 AC 1,269 ms
131,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.optimize import *
from math import *
P,Q=map(int,input().split())
print(newton(lambda x:x*x-Q*x*log2(x)-P,x0=1e20,maxiter=999))
0