結果

問題 No.505 カードの数式2
ユーザー atkrym1217atkrym1217
提出日時 2017-04-26 12:30:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 686 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 75,160 KB
実行使用メモリ 56,104 KB
最終ジャッジ日時 2024-09-13 14:03:16
合計ジャッジ時間 7,458 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,116 KB
testcase_01 AC 132 ms
54,128 KB
testcase_02 AC 131 ms
53,816 KB
testcase_03 AC 132 ms
54,240 KB
testcase_04 AC 130 ms
53,848 KB
testcase_05 AC 131 ms
53,892 KB
testcase_06 AC 131 ms
53,988 KB
testcase_07 AC 132 ms
54,080 KB
testcase_08 AC 129 ms
53,920 KB
testcase_09 AC 129 ms
53,888 KB
testcase_10 AC 131 ms
54,100 KB
testcase_11 AC 117 ms
52,788 KB
testcase_12 AC 130 ms
53,824 KB
testcase_13 WA -
testcase_14 AC 117 ms
52,960 KB
testcase_15 WA -
testcase_16 AC 130 ms
53,884 KB
testcase_17 AC 132 ms
53,824 KB
testcase_18 AC 129 ms
54,072 KB
testcase_19 WA -
testcase_20 AC 134 ms
54,152 KB
testcase_21 AC 131 ms
54,172 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 128 ms
53,932 KB
testcase_30 AC 133 ms
53,864 KB
testcase_31 AC 132 ms
53,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        int[] a = new int[n];
        for (int i = 0;i < n;i++) a[i] = sc.nextInt();
        long[] dp = new long[100];
        dp[0] = a[0];
        for (int i = 1;i < n;i++) {
            long tmp = Long.MIN_VALUE;
            tmp = Math.max(tmp, dp[i-1]+a[i]);
            tmp = Math.max(tmp, dp[i-1]-a[i]);
            tmp = Math.max(tmp, dp[i-1]*a[i]);
            if (a[i]!=0) tmp = Math.max(tmp, dp[i-1]/a[i]);
            dp[i] = tmp;
        }
        System.out.println(dp[n-1]);
    }
}
0