結果

問題 No.561 東京と京都
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-27 04:29:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 2,896 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 41,916 KB
最終ジャッジ日時 2024-05-04 18:34:51
合計ジャッジ時間 6,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,080 KB
testcase_01 AC 107 ms
40,300 KB
testcase_02 AC 97 ms
39,920 KB
testcase_03 AC 99 ms
39,920 KB
testcase_04 AC 101 ms
40,008 KB
testcase_05 AC 106 ms
40,896 KB
testcase_06 AC 108 ms
40,436 KB
testcase_07 AC 110 ms
40,752 KB
testcase_08 AC 110 ms
41,136 KB
testcase_09 AC 116 ms
41,228 KB
testcase_10 AC 106 ms
40,856 KB
testcase_11 AC 117 ms
41,340 KB
testcase_12 AC 140 ms
41,800 KB
testcase_13 AC 122 ms
41,596 KB
testcase_14 AC 124 ms
41,776 KB
testcase_15 AC 133 ms
41,916 KB
testcase_16 AC 125 ms
41,680 KB
testcase_17 AC 124 ms
41,784 KB
testcase_18 AC 124 ms
41,228 KB
testcase_19 AC 129 ms
41,760 KB
testcase_20 AC 123 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No561 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int D = sc.nextInt();
		int t[] = new int[N];
		int k[] = new int[N];
		for(int i = 0;i < N;i++) {
			t[i] = sc.nextInt();
			k[i] = sc.nextInt();
		}
		int tmax[] = new int[N];
		int kmax[] = new int[N];
		tmax[0] = t[0];
		kmax[0] = k[0] - D;
		for(int i = 1;i < N;i++) {
			tmax[i] = Math.max(tmax[i-1] + t[i],kmax[i-1] + t[i] - D);
			kmax[i] = Math.max(kmax[i-1] + k[i],tmax[i-1] + k[i] - D);
		}
		System.out.println(Math.max(tmax[N-1], kmax[N-1]));
	}
}
0