結果

問題 No.561 東京と京都
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-24 02:25:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 4,286 ms
コンパイル使用メモリ 73,640 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-10-11 00:00:56
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,952 KB
testcase_01 AC 120 ms
39,996 KB
testcase_02 AC 134 ms
41,396 KB
testcase_03 AC 138 ms
40,928 KB
testcase_04 AC 134 ms
41,180 KB
testcase_05 AC 135 ms
40,896 KB
testcase_06 AC 134 ms
41,280 KB
testcase_07 AC 133 ms
40,852 KB
testcase_08 AC 140 ms
41,160 KB
testcase_09 AC 139 ms
41,268 KB
testcase_10 AC 138 ms
41,060 KB
testcase_11 AC 145 ms
41,444 KB
testcase_12 AC 149 ms
41,444 KB
testcase_13 AC 153 ms
41,056 KB
testcase_14 AC 151 ms
41,180 KB
testcase_15 AC 155 ms
41,428 KB
testcase_16 AC 161 ms
41,392 KB
testcase_17 AC 152 ms
41,228 KB
testcase_18 AC 157 ms
41,568 KB
testcase_19 AC 153 ms
41,528 KB
testcase_20 AC 156 ms
41,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int fare = sc.nextInt();
		long[] dpt = new long[n];
		long[] dpk = new long[n];
		dpt[0] = sc.nextInt();
		dpk[0] = sc.nextInt()-fare;
		int tokyo = 0;
		int kyoto = 0;
		for (int i=1; i<n; i++) {
			tokyo = sc.nextInt();
			kyoto = sc.nextInt();
			dpt[i] = tokyo + Math.max(dpt[i-1],dpk[i-1]-fare);
			dpk[i] = kyoto + Math.max(dpt[i-1]-fare,dpk[i-1]);
		}
		System.out.println(Math.max(dpt[n-1],dpk[n-1]));
	}
}
0