結果

問題 No.561 東京と京都
ユーザー YamaKasaYamaKasa
提出日時 2018-09-24 21:24:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 3,587 ms
コンパイル使用メモリ 77,008 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-09-23 07:01:33
合計ジャッジ時間 7,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,600 KB
testcase_01 AC 140 ms
53,732 KB
testcase_02 AC 138 ms
53,792 KB
testcase_03 AC 138 ms
54,088 KB
testcase_04 AC 140 ms
54,008 KB
testcase_05 AC 140 ms
53,740 KB
testcase_06 AC 138 ms
53,868 KB
testcase_07 AC 141 ms
53,780 KB
testcase_08 AC 139 ms
54,136 KB
testcase_09 AC 143 ms
53,652 KB
testcase_10 AC 144 ms
53,792 KB
testcase_11 AC 148 ms
53,896 KB
testcase_12 AC 158 ms
54,228 KB
testcase_13 AC 154 ms
54,256 KB
testcase_14 AC 151 ms
54,104 KB
testcase_15 AC 156 ms
54,292 KB
testcase_16 AC 157 ms
54,088 KB
testcase_17 AC 155 ms
54,144 KB
testcase_18 AC 159 ms
53,828 KB
testcase_19 AC 155 ms
53,904 KB
testcase_20 AC 154 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int D = scan.nextInt();
		int[]T = new int[N];
		int[]K = new int[N];
		for(int i = 0; i < N; i++) {
			T[i] = scan.nextInt();
			K[i] = scan.nextInt();
		}
		scan.close();
		int[][]dp = new int[N + 1][2];
		dp[1][0] = T[0];
		dp[1][1] = K[0] - D;
		for(int i = 2; i <= N; i++) {
			dp[i][0] = Math.max(dp[i - 1][0] + T[i - 1], dp[i - 1][1] - D + T[i - 1]);
			dp[i][1] = Math.max(dp[i - 1][0] - D + K[i - 1], dp[i - 1][1] + K[i - 1]);
		}
		System.out.println(Math.max(dp[N][0], dp[N][1]));
	}
}
0