結果

問題 No.505 カードの数式2
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-12 11:30:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 1,157 bytes
コンパイル時間 3,434 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-11-14 07:28:04
合計ジャッジ時間 7,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,892 KB
testcase_01 AC 128 ms
53,844 KB
testcase_02 AC 127 ms
54,100 KB
testcase_03 AC 126 ms
53,844 KB
testcase_04 AC 129 ms
54,260 KB
testcase_05 AC 134 ms
53,852 KB
testcase_06 AC 132 ms
53,852 KB
testcase_07 AC 124 ms
54,108 KB
testcase_08 AC 127 ms
53,960 KB
testcase_09 AC 126 ms
53,880 KB
testcase_10 AC 130 ms
54,296 KB
testcase_11 AC 128 ms
54,372 KB
testcase_12 AC 131 ms
54,260 KB
testcase_13 AC 114 ms
53,248 KB
testcase_14 AC 126 ms
53,868 KB
testcase_15 AC 129 ms
54,008 KB
testcase_16 AC 127 ms
54,096 KB
testcase_17 AC 127 ms
54,124 KB
testcase_18 AC 133 ms
53,960 KB
testcase_19 AC 128 ms
54,096 KB
testcase_20 AC 131 ms
54,144 KB
testcase_21 AC 134 ms
54,212 KB
testcase_22 AC 132 ms
54,048 KB
testcase_23 AC 130 ms
54,196 KB
testcase_24 AC 127 ms
54,256 KB
testcase_25 AC 130 ms
54,000 KB
testcase_26 AC 130 ms
54,100 KB
testcase_27 AC 129 ms
54,128 KB
testcase_28 AC 129 ms
54,328 KB
testcase_29 AC 130 ms
54,192 KB
testcase_30 AC 129 ms
54,008 KB
testcase_31 AC 130 ms
53,932 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[] a = new long[N];
    for(int i = 0; i < N; i++) {
      a[i] = sc.nextLong();
    }
    // i項までの最大値
    long[] dp1 = new long[N];
    // i項までの最小値
    long[] dp2 = new long[N];
    dp1[0] = a[0];
    dp2[0] = a[0];
    for(int i = 1; i < N; i++) {
      if(a[i] == 0) {
        dp1[i] = Math.max(dp1[i - 1], 0);
        dp2[i] = Math.min(dp2[i - 1], 0);
      } else if(a[i] > 0) {
        long c = Math.max(dp1[i - 1] + a[i], dp1[i - 1] * a[i]);
        c = Math.max(c, dp1[i - 1] / a[i]);
        dp1[i] = c;
        long b = Math.min(dp2[i - 1] - a[i], dp2[i - 1] * a[i]);
        b = Math.min(b, dp2[i - 1] / a[i]);
        dp2[i] = b;
      } else {
        long c = Math.max(dp1[i - 1] - a[i], dp2[i - 1] * a[i]);
        c = Math.max(c, dp2[i - 1] / a[i]);
        dp1[i] = c;
        long b = Math.min(dp2[i - 1] + a[i], dp1[i - 1] * a[i]);
        b = Math.min(b, dp1[i - 1] / a[i]);
        dp2[i] = b;
      }
    }
    System.out.println(dp1[N - 1]);
  }
}
0