結果

問題 No.561 東京と京都
ユーザー takeya_okinotakeya_okino
提出日時 2017-08-26 20:24:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 1,836 ms
コンパイル使用メモリ 77,456 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-10-15 17:52:42
合計ジャッジ時間 5,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,092 KB
testcase_01 AC 104 ms
41,336 KB
testcase_02 AC 115 ms
41,132 KB
testcase_03 WA -
testcase_04 AC 105 ms
41,336 KB
testcase_05 AC 129 ms
41,088 KB
testcase_06 AC 121 ms
41,304 KB
testcase_07 AC 109 ms
41,296 KB
testcase_08 AC 120 ms
41,296 KB
testcase_09 AC 106 ms
41,464 KB
testcase_10 AC 120 ms
41,424 KB
testcase_11 AC 123 ms
41,508 KB
testcase_12 AC 125 ms
41,660 KB
testcase_13 AC 130 ms
41,644 KB
testcase_14 AC 130 ms
41,612 KB
testcase_15 AC 132 ms
41,724 KB
testcase_16 AC 141 ms
41,764 KB
testcase_17 AC 134 ms
41,724 KB
testcase_18 WA -
testcase_19 AC 134 ms
41,588 KB
testcase_20 AC 138 ms
41,672 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] + k - d);
      long kyoto = Math.max(dp[i - 1][0] + t - 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