結果

問題 No.1132 凸凹
ユーザー tentententen
提出日時 2020-08-17 22:41:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 2,381 ms
コンパイル使用メモリ 75,988 KB
実行使用メモリ 42,876 KB
最終ジャッジ日時 2024-10-11 11:29:04
合計ジャッジ時間 8,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
42,820 KB
testcase_01 AC 173 ms
42,632 KB
testcase_02 AC 160 ms
42,312 KB
testcase_03 AC 169 ms
42,788 KB
testcase_04 AC 170 ms
42,784 KB
testcase_05 AC 170 ms
42,724 KB
testcase_06 AC 173 ms
42,460 KB
testcase_07 AC 173 ms
42,624 KB
testcase_08 AC 172 ms
42,148 KB
testcase_09 AC 162 ms
42,196 KB
testcase_10 AC 170 ms
42,596 KB
testcase_11 AC 172 ms
42,516 KB
testcase_12 AC 170 ms
42,556 KB
testcase_13 AC 172 ms
42,292 KB
testcase_14 AC 168 ms
42,800 KB
testcase_15 AC 170 ms
42,876 KB
testcase_16 AC 171 ms
42,424 KB
testcase_17 AC 171 ms
42,684 KB
testcase_18 AC 172 ms
42,736 KB
testcase_19 AC 171 ms
42,748 KB
testcase_20 AC 171 ms
42,628 KB
testcase_21 AC 179 ms
42,692 KB
testcase_22 AC 172 ms
42,504 KB
testcase_23 AC 172 ms
42,692 KB
testcase_24 AC 172 ms
42,304 KB
testcase_25 AC 172 ms
42,788 KB
testcase_26 AC 175 ms
42,744 KB
testcase_27 AC 172 ms
42,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		int d = sc.nextInt();
		int p = sc.nextInt();
		int q = sc.nextInt();
		long max = Long.MIN_VALUE;
		long maxValue = 0;
		long min = Long.MAX_VALUE;
		long minValue = 0;
		for (long i = p; i <= q; i++) {
		    long value = i * i * i * a + i * i * b + i * c + d;
		    if (max < value) {
		        max = value;
		        maxValue = i;
		    }
		    if (min > value) {
		        min = value;
		        minValue = i;
		    }
		}
		System.out.println(max + " " + maxValue + " " + min + " " + minValue);
	}
}
0