結果
問題 | No.1042 愚直大学 |
ユーザー | Theta |
提出日時 | 2022-10-07 14:32:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 987 bytes |
コンパイル時間 | 375 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 16,256 KB |
最終ジャッジ日時 | 2024-06-11 21:35:59 |
合計ジャッジ時間 | 4,976 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | OLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
from math import log2, log class DiffSolveTime: def __init__(self, p: int, q: int): self.__p = p self.__q = q def diff_solve_time(self, n: int | float) -> float: print(f"{n=}") return n ** 2 - self.__p - self.__q * n * log2(n) def diff_solve_time_derived(self, n: int | float) -> float: return n * 2 - self.__q * log2(n) - self.__q / log(2) def diff2_solve_time_derived(self, n: int | float) -> float: return 2 - self.__q / (n * log(2)) def get_inflection(self) -> float: return self.__q / (2*log(2)) def main(): P, Q = map(int, input().split()) solver = DiffSolveTime(P, Q) N = 1e2 while solver.diff_solve_time(N) < 0: N *= 10 while abs(solver.diff_solve_time(N)) > 1e-6: print(f"{N=}") N -= (solver.diff_solve_time(N)/solver.diff_solve_time_derived(N)) print(f"{N=}") print("loop end") print(N) if __name__ == "__main__": main()