結果
| 問題 |
No.1042 愚直大学
|
| コンテスト | |
| ユーザー |
strangerxxx
|
| 提出日時 | 2020-05-01 23:48:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 138 bytes |
| コンパイル時間 | 327 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 139,400 KB |
| 最終ジャッジ日時 | 2024-12-25 15:41:18 |
| 合計ジャッジ時間 | 42,285 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 TLE * 1 |
| other | RE * 23 |
ソースコード
from scipy.optimize import newton
import math
p,q=map(int,input().split())
def f(x):
return q*n*math.log2(n)+p-n**2
print(newton(f,0))
strangerxxx