結果

問題 No.1042 愚直大学
ユーザー maspymaspy
提出日時 2020-05-01 22:46:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,941 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 133,636 KB
最終ジャッジ日時 2024-06-07 11:07:29
合計ジャッジ時間 39,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,941 ms
67,972 KB
testcase_01 AC 1,405 ms
67,328 KB
testcase_02 AC 1,419 ms
67,324 KB
testcase_03 AC 1,399 ms
67,568 KB
testcase_04 AC 1,395 ms
67,952 KB
testcase_05 AC 1,392 ms
67,708 KB
testcase_06 AC 1,423 ms
67,688 KB
testcase_07 AC 1,418 ms
67,696 KB
testcase_08 AC 1,398 ms
67,324 KB
testcase_09 AC 1,392 ms
67,716 KB
testcase_10 AC 1,388 ms
67,956 KB
testcase_11 AC 1,438 ms
68,084 KB
testcase_12 AC 1,400 ms
67,460 KB
testcase_13 AC 1,398 ms
67,572 KB
testcase_14 AC 1,409 ms
67,820 KB
testcase_15 AC 1,392 ms
67,700 KB
testcase_16 AC 1,392 ms
67,176 KB
testcase_17 AC 1,386 ms
67,728 KB
testcase_18 AC 1,384 ms
67,820 KB
testcase_19 AC 1,398 ms
67,704 KB
testcase_20 AC 1,410 ms
67,840 KB
testcase_21 AC 1,407 ms
67,864 KB
testcase_22 AC 1,409 ms
67,704 KB
testcase_23 AC 1,391 ms
67,708 KB
testcase_24 AC 1,390 ms
133,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from scipy.optimize import newton
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

P, Q = map(int, read().split())

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

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