結果

問題 No.561 東京と京都
ユーザー htensaihtensai
提出日時 2019-11-14 21:33:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 41,916 KB
最終ジャッジ日時 2024-09-22 02:09:45
合計ジャッジ時間 6,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,316 KB
testcase_01 AC 116 ms
40,044 KB
testcase_02 AC 132 ms
41,028 KB
testcase_03 AC 133 ms
41,004 KB
testcase_04 AC 131 ms
41,252 KB
testcase_05 AC 132 ms
41,112 KB
testcase_06 AC 129 ms
41,472 KB
testcase_07 AC 132 ms
41,328 KB
testcase_08 AC 133 ms
41,032 KB
testcase_09 AC 137 ms
41,536 KB
testcase_10 AC 135 ms
40,900 KB
testcase_11 AC 146 ms
41,116 KB
testcase_12 AC 146 ms
41,640 KB
testcase_13 AC 165 ms
41,588 KB
testcase_14 AC 148 ms
41,456 KB
testcase_15 AC 153 ms
41,576 KB
testcase_16 AC 146 ms
41,448 KB
testcase_17 AC 149 ms
41,576 KB
testcase_18 AC 150 ms
41,584 KB
testcase_19 AC 159 ms
41,916 KB
testcase_20 AC 146 ms
41,468 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[2][n + 1];
		dp[1][0] = Integer.MIN_VALUE / 10;
		for (int i = 1; i <= n; i++) {
		    int a = sc.nextInt();
		    int b = sc.nextInt();
		    dp[0][i] = Math.max(dp[0][i - 1], dp[1][i - 1] - d) + a;
		    dp[1][i] = Math.max(dp[0][i - 1] - d, dp[1][i - 1]) + b;
		}
		System.out.println(Math.max(dp[0][n], dp[1][n]));
	}
}
0