結果

問題 No.1132 凸凹
ユーザー fukafukatanifukafukatani
提出日時 2021-06-24 23:56:49
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 992 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 12,860 ms
コンパイル使用メモリ 275,652 KB
実行使用メモリ 63,792 KB
最終ジャッジ日時 2024-06-25 07:36:51
合計ジャッジ時間 42,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 974 ms
63,760 KB
testcase_01 AC 976 ms
63,632 KB
testcase_02 AC 979 ms
63,556 KB
testcase_03 AC 978 ms
63,652 KB
testcase_04 AC 977 ms
63,532 KB
testcase_05 AC 971 ms
63,568 KB
testcase_06 AC 992 ms
63,496 KB
testcase_07 AC 965 ms
63,504 KB
testcase_08 AC 969 ms
63,720 KB
testcase_09 AC 978 ms
63,360 KB
testcase_10 AC 972 ms
63,536 KB
testcase_11 AC 969 ms
63,612 KB
testcase_12 AC 970 ms
63,440 KB
testcase_13 AC 967 ms
63,416 KB
testcase_14 AC 973 ms
63,792 KB
testcase_15 AC 983 ms
63,652 KB
testcase_16 AC 988 ms
63,716 KB
testcase_17 AC 980 ms
63,380 KB
testcase_18 AC 979 ms
63,696 KB
testcase_19 AC 990 ms
63,540 KB
testcase_20 AC 973 ms
63,568 KB
testcase_21 AC 981 ms
63,392 KB
testcase_22 AC 989 ms
63,692 KB
testcase_23 AC 980 ms
63,588 KB
testcase_24 AC 975 ms
63,732 KB
testcase_25 AC 979 ms
63,512 KB
testcase_26 AC 965 ms
63,504 KB
testcase_27 AC 972 ms
63,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  val sc = new java.util.Scanner(System.in)
  val a,b,c,d,p,q = sc.nextInt
  val h = (x: Int) => a * x * x * x + b * x * x + c * x + d
  val min_p = (p to q).minBy(h(_))
  val max_p = (p to q).maxBy(h(_))
  println(s"${h(max_p)} $max_p ${h(min_p)} $min_p")
}
0