結果

問題 No.561 東京と京都
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-29 23:24:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 77,160 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-04-30 00:08:10
合計ジャッジ時間 5,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,020 KB
testcase_01 AC 132 ms
41,120 KB
testcase_02 AC 112 ms
40,128 KB
testcase_03 AC 113 ms
39,992 KB
testcase_04 AC 127 ms
41,244 KB
testcase_05 AC 123 ms
41,252 KB
testcase_06 AC 128 ms
41,020 KB
testcase_07 AC 114 ms
40,188 KB
testcase_08 AC 117 ms
40,232 KB
testcase_09 AC 116 ms
40,128 KB
testcase_10 AC 126 ms
40,260 KB
testcase_11 AC 140 ms
41,448 KB
testcase_12 AC 141 ms
41,364 KB
testcase_13 AC 146 ms
41,264 KB
testcase_14 AC 139 ms
41,352 KB
testcase_15 AC 150 ms
41,196 KB
testcase_16 AC 144 ms
41,392 KB
testcase_17 AC 143 ms
41,276 KB
testcase_18 AC 137 ms
41,044 KB
testcase_19 AC 141 ms
41,424 KB
testcase_20 AC 156 ms
41,592 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