結果

問題 No.2970 三次関数の絶対値
ユーザー 👑 p-adicp-adic
提出日時 2024-05-08 09:51:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 156 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-05-08 11:10:17
合計ジャッジ時間 23,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,952 KB
testcase_01 AC 547 ms
10,624 KB
testcase_02 AC 1,054 ms
10,624 KB
testcase_03 AC 1,493 ms
10,752 KB
testcase_04 AC 544 ms
10,624 KB
testcase_05 AC 554 ms
10,624 KB
testcase_06 AC 535 ms
10,624 KB
testcase_07 AC 542 ms
10,624 KB
testcase_08 AC 555 ms
10,624 KB
testcase_09 AC 1,101 ms
10,624 KB
testcase_10 AC 1,071 ms
10,624 KB
testcase_11 TLE -
testcase_12 AC 533 ms
10,752 KB
testcase_13 AC 521 ms
10,624 KB
testcase_14 AC 1,047 ms
10,752 KB
testcase_15 AC 551 ms
10,624 KB
testcase_16 AC 1,031 ms
10,752 KB
testcase_17 AC 546 ms
10,752 KB
testcase_18 AC 558 ms
10,624 KB
testcase_19 AC 553 ms
10,752 KB
testcase_20 AC 578 ms
10,624 KB
testcase_21 AC 566 ms
10,624 KB
testcase_22 AC 557 ms
10,624 KB
testcase_23 AC 541 ms
10,624 KB
testcase_24 AC 532 ms
10,624 KB
testcase_25 AC 522 ms
10,624 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

J=lambda:map(int,input().split())
C=list(J())
L,R=J()
a=9**6
e=1/a
for i in range((R-L)*a+1):
	x=L+i*e
	a=min(a,abs(C[0]+(C[1]+(C[2]+C[3]*x)*x)*x))
print(a)
0