結果
| 問題 | No.1042 愚直大学 |
| コンテスト | |
| ユーザー |
strangerxxx
|
| 提出日時 | 2021-02-03 12:04:04 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 892 ms |
| コンパイル使用メモリ | 21,432 KB |
| 実行使用メモリ | 73,644 KB |
| 最終ジャッジ日時 | 2026-08-02 02:08:30 |
| 合計ジャッジ時間 | 7,466 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | TLE * 1 -- * 1 |
| other | -- * 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