結果
| 問題 | No.1042 愚直大学 |
| コンテスト | |
| ユーザー |
strangerxxx
|
| 提出日時 | 2021-02-03 12:04:04 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 485 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 160,700 KB |
| 最終ジャッジ日時 | 2026-03-19 15:59:53 |
| 合計ジャッジ時間 | 53,673 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | TLE * 2 |
| other | RE * 23 |
ソースコード
from scipy.optimize import bisect
def f(x):
return x ** 2 - q * x * np.log2(x) - p
p, q = map(int, input().split())
print(bisect(f, 1, 10 ** 15))
strangerxxx