結果

問題 No.561 東京と京都
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-29 23:24:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 76,744 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-11-19 09:39:43
合計ジャッジ時間 6,053 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,140 KB
testcase_01 AC 136 ms
41,244 KB
testcase_02 AC 138 ms
41,088 KB
testcase_03 AC 131 ms
41,364 KB
testcase_04 AC 131 ms
41,140 KB
testcase_05 AC 136 ms
41,388 KB
testcase_06 AC 129 ms
41,228 KB
testcase_07 AC 129 ms
40,952 KB
testcase_08 AC 139 ms
41,416 KB
testcase_09 AC 135 ms
41,272 KB
testcase_10 AC 137 ms
41,240 KB
testcase_11 AC 139 ms
41,304 KB
testcase_12 AC 147 ms
41,408 KB
testcase_13 AC 149 ms
41,340 KB
testcase_14 AC 153 ms
41,592 KB
testcase_15 AC 151 ms
41,504 KB
testcase_16 AC 146 ms
41,292 KB
testcase_17 AC 147 ms
41,496 KB
testcase_18 AC 161 ms
41,384 KB
testcase_19 AC 151 ms
41,372 KB
testcase_20 AC 150 ms
41,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		int d=scanner.nextInt();
		int t[]=new int[n+1];
		int k[]=new int[n+1];
		for(int i=1;i<=n;i++) {
			t[i]=scanner.nextInt();
			k[i]=scanner.nextInt();
		}
		int dp[][]=new int[n+1][2];
		dp[0][0]=0;
		dp[0][1]=-d;
		for(int i=1;i<=n;i++) {
			dp[i][0]=Math.max(dp[i-1][0], dp[i-1][1]-d)+t[i];
			dp[i][1]=Math.max(dp[i-1][0]-d, dp[i-1][1])+k[i];
		}
		System.out.println(Math.max(dp[n][0], dp[n][1]));
	}
}
0