結果

問題 No.561 東京と京都
ユーザー takeya_okinotakeya_okino
提出日時 2017-08-26 20:25:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 77,396 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-10-15 17:53:09
合計ジャッジ時間 5,403 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,496 KB
testcase_01 AC 105 ms
52,652 KB
testcase_02 AC 102 ms
52,684 KB
testcase_03 AC 105 ms
52,820 KB
testcase_04 AC 118 ms
52,832 KB
testcase_05 AC 103 ms
52,820 KB
testcase_06 AC 113 ms
53,660 KB
testcase_07 AC 105 ms
52,636 KB
testcase_08 AC 119 ms
53,872 KB
testcase_09 AC 120 ms
53,804 KB
testcase_10 AC 103 ms
52,228 KB
testcase_11 AC 125 ms
53,996 KB
testcase_12 AC 147 ms
53,820 KB
testcase_13 AC 127 ms
54,356 KB
testcase_14 AC 132 ms
53,880 KB
testcase_15 AC 127 ms
53,968 KB
testcase_16 AC 137 ms
53,724 KB
testcase_17 AC 129 ms
54,072 KB
testcase_18 AC 128 ms
53,716 KB
testcase_19 AC 134 ms
53,920 KB
testcase_20 AC 144 ms
53,976 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 d = sc.nextLong();
    long[][] dp = new long[n][2];
    long t0 = sc.nextLong();
    long k0 = sc.nextLong();
    dp[0][0] = t0;
    dp[0][1] = k0 - d;
    for(int i = 1; i < n; i++) {
      long t = sc.nextLong();
      long k = sc.nextLong();
      long tokyo = Math.max(dp[i - 1][0] + t, dp[i - 1][1] + t - d);
      long kyoto = Math.max(dp[i - 1][0] + k - d, dp[i - 1][1] + k);
      dp[i][0] = tokyo;
      dp[i][1] = kyoto;
    }
    System.out.println(Math.max(dp[n - 1][0], dp[n - 1][1]));
  }
}
0