結果

問題 No.561 東京と京都
ユーザー takeya_okinotakeya_okino
提出日時 2017-08-26 20:07:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 652 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 76,896 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-10-15 17:52:32
合計ジャッジ時間 6,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,044 KB
testcase_01 AC 134 ms
41,164 KB
testcase_02 AC 134 ms
41,296 KB
testcase_03 WA -
testcase_04 AC 134 ms
41,060 KB
testcase_05 AC 134 ms
41,456 KB
testcase_06 AC 131 ms
41,088 KB
testcase_07 AC 118 ms
40,332 KB
testcase_08 AC 135 ms
41,272 KB
testcase_09 AC 137 ms
41,296 KB
testcase_10 AC 135 ms
41,792 KB
testcase_11 AC 143 ms
41,280 KB
testcase_12 AC 144 ms
41,796 KB
testcase_13 AC 147 ms
41,280 KB
testcase_14 AC 147 ms
41,592 KB
testcase_15 AC 157 ms
41,504 KB
testcase_16 AC 149 ms
41,316 KB
testcase_17 AC 147 ms
41,436 KB
testcase_18 WA -
testcase_19 AC 151 ms
41,408 KB
testcase_20 AC 150 ms
41,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int d = sc.nextInt();
    int[][] dp = new int[n][2];
    int t0 = sc.nextInt();
    int k0 = sc.nextInt();
    dp[0][0] = t0;
    dp[0][1] = k0 - d;
    for(int i = 1; i < n; i++) {
      int t = sc.nextInt();
      int k = sc.nextInt();
      int tokyo = Math.max(dp[i - 1][0] + t, dp[i - 1][1] + k - d);
      int 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