結果

問題 No.1132 凸凹
ユーザー RISE70226821RISE70226821
提出日時 2020-08-04 09:29:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 76,280 KB
実行使用メモリ 42,576 KB
最終ジャッジ日時 2024-09-14 07:02:05
合計ジャッジ時間 8,239 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
42,296 KB
testcase_01 AC 171 ms
42,204 KB
testcase_02 AC 171 ms
42,396 KB
testcase_03 AC 160 ms
42,240 KB
testcase_04 AC 175 ms
42,376 KB
testcase_05 AC 159 ms
42,244 KB
testcase_06 AC 173 ms
42,464 KB
testcase_07 AC 172 ms
42,224 KB
testcase_08 AC 173 ms
42,460 KB
testcase_09 AC 175 ms
42,464 KB
testcase_10 AC 173 ms
42,508 KB
testcase_11 AC 170 ms
42,536 KB
testcase_12 AC 173 ms
42,480 KB
testcase_13 AC 172 ms
42,576 KB
testcase_14 AC 172 ms
42,320 KB
testcase_15 AC 172 ms
42,432 KB
testcase_16 AC 175 ms
42,364 KB
testcase_17 AC 176 ms
42,544 KB
testcase_18 AC 172 ms
42,396 KB
testcase_19 AC 175 ms
42,364 KB
testcase_20 AC 174 ms
42,524 KB
testcase_21 AC 171 ms
42,340 KB
testcase_22 AC 172 ms
42,396 KB
testcase_23 AC 174 ms
42,228 KB
testcase_24 AC 171 ms
42,452 KB
testcase_25 AC 171 ms
42,448 KB
testcase_26 AC 172 ms
42,436 KB
testcase_27 AC 173 ms
42,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		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();
		
		// 算出
		int maxHeight = Integer.MIN_VALUE;
		int maxX = 0;
		int minHeight = Integer.MAX_VALUE;
		int minX = 0;
		
		for(int x = p; x <= q; x++){
			int height = a*x*x*x + b*x*x + c*x + d;
			if(maxHeight < height){
				maxHeight = height;
				maxX = x;
			}
			if(height < minHeight){
				minHeight = height;
				minX = x;
			}
		}
		
		// 出力
		System.out.println(maxHeight + " " + maxX + " " + minHeight + " " + minX);
	}
}
0