結果

問題 No.1132 凸凹
ユーザー 👑 KazunKazun
提出日時 2020-07-29 02:21:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 53,620 KB
最終ジャッジ日時 2024-06-28 21:14:03
合計ジャッジ時間 1,848 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,752 KB
testcase_01 AC 33 ms
52,772 KB
testcase_02 AC 34 ms
53,104 KB
testcase_03 AC 35 ms
53,492 KB
testcase_04 AC 34 ms
52,348 KB
testcase_05 AC 34 ms
52,680 KB
testcase_06 AC 36 ms
52,484 KB
testcase_07 AC 33 ms
52,836 KB
testcase_08 AC 34 ms
52,600 KB
testcase_09 AC 34 ms
52,944 KB
testcase_10 AC 34 ms
52,348 KB
testcase_11 AC 32 ms
53,064 KB
testcase_12 AC 33 ms
53,040 KB
testcase_13 AC 33 ms
53,040 KB
testcase_14 AC 32 ms
53,620 KB
testcase_15 AC 31 ms
53,388 KB
testcase_16 AC 31 ms
52,364 KB
testcase_17 AC 31 ms
52,868 KB
testcase_18 AC 32 ms
53,572 KB
testcase_19 AC 32 ms
52,680 KB
testcase_20 AC 33 ms
52,888 KB
testcase_21 AC 32 ms
53,016 KB
testcase_22 AC 31 ms
53,036 KB
testcase_23 AC 32 ms
52,688 KB
testcase_24 AC 31 ms
52,756 KB
testcase_25 AC 31 ms
52,684 KB
testcase_26 AC 32 ms
52,344 KB
testcase_27 AC 31 ms
52,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,p,q=map(int,input().split())
f=lambda x:a*x*x*x+b*x*x+c*x+d

inf=float("inf")
M=inf
N=-inf

X,Y=0,0
for x in range(p,q+1):
    h=f(x)
    if h<M:
        X=x
        M=h
    if N<h:
        Y=x
        N=h
print(N,Y,M,X)
0