結果

問題 No.505 カードの数式2
ユーザー htensaihtensai
提出日時 2019-12-26 11:50:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 733 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 54,908 KB
最終ジャッジ日時 2024-10-03 06:21:33
合計ジャッジ時間 6,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,040 KB
testcase_01 AC 100 ms
39,876 KB
testcase_02 AC 102 ms
41,244 KB
testcase_03 AC 111 ms
40,120 KB
testcase_04 AC 103 ms
41,056 KB
testcase_05 AC 112 ms
41,480 KB
testcase_06 AC 96 ms
41,256 KB
testcase_07 AC 94 ms
41,452 KB
testcase_08 AC 112 ms
41,348 KB
testcase_09 AC 102 ms
41,312 KB
testcase_10 AC 102 ms
41,400 KB
testcase_11 WA -
testcase_12 AC 101 ms
41,416 KB
testcase_13 WA -
testcase_14 AC 114 ms
41,380 KB
testcase_15 WA -
testcase_16 AC 100 ms
41,296 KB
testcase_17 WA -
testcase_18 AC 110 ms
41,344 KB
testcase_19 WA -
testcase_20 AC 100 ms
41,328 KB
testcase_21 AC 102 ms
41,416 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 106 ms
41,104 KB
testcase_31 AC 99 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long max = sc.nextInt();
        long min = max;
        for (int i = 1; i < n; i++) {
            long tmax = Long.MIN_VALUE;
            long tmin = Long.MAX_VALUE;
            long x = sc.nextInt();
            tmax = Math.max(tmax, max + x);
            tmax = Math.max(tmax, max - x);
            tmax = Math.max(tmax, max * x);
            tmin = Math.max(tmin, max + x);
            tmin = Math.max(tmin, max - x);
            tmin = Math.max(tmin, max * x);
            max = tmax;
            min = tmin;
        }
        System.out.println(max);
    }
}
0