結果

問題 No.561 東京と京都
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-27 04:29:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 3,265 ms
コンパイル使用メモリ 77,684 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-11-26 08:16:05
合計ジャッジ時間 6,943 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
52,720 KB
testcase_01 AC 125 ms
54,028 KB
testcase_02 AC 129 ms
53,968 KB
testcase_03 AC 128 ms
54,104 KB
testcase_04 AC 128 ms
53,972 KB
testcase_05 AC 124 ms
54,272 KB
testcase_06 AC 127 ms
53,964 KB
testcase_07 AC 126 ms
53,996 KB
testcase_08 AC 128 ms
54,212 KB
testcase_09 AC 130 ms
54,168 KB
testcase_10 AC 131 ms
53,996 KB
testcase_11 AC 137 ms
54,024 KB
testcase_12 AC 141 ms
54,408 KB
testcase_13 AC 142 ms
54,112 KB
testcase_14 AC 154 ms
54,428 KB
testcase_15 AC 147 ms
54,180 KB
testcase_16 AC 145 ms
54,432 KB
testcase_17 AC 141 ms
54,328 KB
testcase_18 AC 145 ms
54,244 KB
testcase_19 AC 143 ms
54,484 KB
testcase_20 AC 142 ms
54,188 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