結果

問題 No.561 東京と京都
ユーザー tetsutetsu
提出日時 2017-08-26 01:13:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 3,683 ms
コンパイル使用メモリ 77,660 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-10-15 17:00:40
合計ジャッジ時間 7,597 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,016 KB
testcase_01 AC 134 ms
53,984 KB
testcase_02 AC 133 ms
53,848 KB
testcase_03 AC 136 ms
53,668 KB
testcase_04 AC 133 ms
54,084 KB
testcase_05 AC 137 ms
53,928 KB
testcase_06 AC 133 ms
53,796 KB
testcase_07 AC 135 ms
53,820 KB
testcase_08 AC 135 ms
53,960 KB
testcase_09 AC 137 ms
53,960 KB
testcase_10 AC 137 ms
53,880 KB
testcase_11 AC 139 ms
53,844 KB
testcase_12 AC 151 ms
54,032 KB
testcase_13 AC 150 ms
53,988 KB
testcase_14 AC 148 ms
53,980 KB
testcase_15 AC 149 ms
54,196 KB
testcase_16 AC 151 ms
53,964 KB
testcase_17 AC 152 ms
53,800 KB
testcase_18 AC 153 ms
54,040 KB
testcase_19 AC 150 ms
53,912 KB
testcase_20 AC 151 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki172;

import java.util.Scanner;

public class D {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long D = sc.nextLong();
		long[] T = new long[N];
		long[] K = new long[N];
		long[] Tans = new long[N];
		long[] Kans = new long[N];
 		for(int i=0; i<N; i++) {
			T[i] = sc.nextLong();
			K[i] = sc.nextLong();
		}
 		sc.close();
		Tans[0] = T[0];
		Kans[0] = K[0] - D;
 		for(int i=1; i<N; i++) {
 			Tans[i] = T[i] + max(Tans[i-1], Kans[i-1]-D);
 			Kans[i] = K[i] + max(Tans[i-1]-D, Kans[i-1]);
 		}
		System.out.println(max(Tans[N-1], Kans[N-1]));
	}
	
	private static long max(long a, long b) {
		if(a > b) {
			return a;
		} else {
			return b;
		}
	}

}
0