結果

問題 No.1132 凸凹
ユーザー face4face4
提出日時 2020-08-02 14:35:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 75,696 KB
実行使用メモリ 53,084 KB
最終ジャッジ日時 2024-07-18 13:15:57
合計ジャッジ時間 5,117 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
51,308 KB
testcase_01 AC 72 ms
50,828 KB
testcase_02 AC 76 ms
52,964 KB
testcase_03 AC 74 ms
51,064 KB
testcase_04 AC 72 ms
53,084 KB
testcase_05 AC 77 ms
51,028 KB
testcase_06 AC 89 ms
52,856 KB
testcase_07 AC 73 ms
51,248 KB
testcase_08 AC 75 ms
50,968 KB
testcase_09 AC 75 ms
52,540 KB
testcase_10 AC 81 ms
52,576 KB
testcase_11 AC 83 ms
51,484 KB
testcase_12 AC 75 ms
50,860 KB
testcase_13 AC 76 ms
50,908 KB
testcase_14 AC 78 ms
51,484 KB
testcase_15 AC 75 ms
51,000 KB
testcase_16 AC 77 ms
51,364 KB
testcase_17 AC 75 ms
50,908 KB
testcase_18 AC 85 ms
52,536 KB
testcase_19 AC 74 ms
50,856 KB
testcase_20 AC 74 ms
51,112 KB
testcase_21 AC 78 ms
52,892 KB
testcase_22 AC 82 ms
53,064 KB
testcase_23 AC 77 ms
50,980 KB
testcase_24 AC 74 ms
50,896 KB
testcase_25 AC 72 ms
50,892 KB
testcase_26 AC 82 ms
52,996 KB
testcase_27 AC 80 ms
52,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line[] = br.readLine().split(" ");
        int a = Integer.parseInt(line[0]);
        int b = Integer.parseInt(line[1]);
        int c = Integer.parseInt(line[2]);
        int d = Integer.parseInt(line[3]);
        int p = Integer.parseInt(line[4]);
        int q = Integer.parseInt(line[5]);
        long ma = -1L<<60, mi = 1L<<60, xma = 0, xmi = 0;
        for(long i = p; i <= q; i++){
            long v = a*i*i*i+b*i*i+c*i+d;
            if(v > ma){
                ma = v;
                xma = i;
            }
            if(v < mi){
                mi = v;
                xmi = i;
            }
        }
        System.out.println(ma + " " + xma + " " + mi + " " + xmi);
    }
}
0