結果

問題 No.595 登山
ユーザー tetsutetsu
提出日時 2017-11-11 23:04:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 931 ms / 1,500 ms
コード長 658 bytes
コンパイル時間 3,890 ms
コンパイル使用メモリ 77,164 KB
実行使用メモリ 59,924 KB
最終ジャッジ日時 2024-12-15 20:08:21
合計ジャッジ時間 23,751 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,028 KB
testcase_01 AC 127 ms
41,332 KB
testcase_02 AC 129 ms
41,060 KB
testcase_03 AC 130 ms
41,208 KB
testcase_04 AC 844 ms
55,344 KB
testcase_05 AC 520 ms
48,700 KB
testcase_06 AC 769 ms
52,964 KB
testcase_07 AC 330 ms
47,476 KB
testcase_08 AC 371 ms
47,940 KB
testcase_09 AC 730 ms
53,112 KB
testcase_10 AC 630 ms
48,736 KB
testcase_11 AC 656 ms
49,520 KB
testcase_12 AC 297 ms
47,256 KB
testcase_13 AC 504 ms
48,276 KB
testcase_14 AC 750 ms
54,900 KB
testcase_15 AC 730 ms
53,508 KB
testcase_16 AC 701 ms
54,876 KB
testcase_17 AC 677 ms
53,556 KB
testcase_18 AC 716 ms
53,480 KB
testcase_19 AC 906 ms
58,336 KB
testcase_20 AC 902 ms
58,400 KB
testcase_21 AC 879 ms
58,916 KB
testcase_22 AC 931 ms
59,924 KB
testcase_23 AC 879 ms
58,312 KB
testcase_24 AC 130 ms
41,216 KB
testcase_25 AC 132 ms
40,844 KB
testcase_26 AC 883 ms
58,344 KB
testcase_27 AC 727 ms
57,468 KB
testcase_28 AC 700 ms
57,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class P595 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long P = sc.nextLong();
		long[] H = new long[N];
		for(int i=0; i<N; i++) {
			H[i] = sc.nextLong();
		}
		long[] dpr = new long[N];
		long[] dpl = new long[N];
		dpl[0] = 1000000000;
		for(int i=1; i<N; i++) {
			dpr[i] = Math.min(Math.min(dpr[i-1], dpl[i-1])+P, dpr[i-1]+Math.max(0, H[i]-H[i-1]));
			dpl[i] = Math.min(Math.min(dpr[i-1], dpl[i-1])+P, dpl[i-1]+Math.max(0, H[i-1]-H[i]));
		}
		System.out.println(Math.min(dpr[N-1], dpl[N-1]));
	}

}
0