結果

問題 No.595 登山
ユーザー pluto77pluto77
提出日時 2017-11-19 11:41:22
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 23,740 KB
最終ジャッジ日時 2024-05-04 11:42:51
合計ジャッジ時間 8,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,272 KB
testcase_01 AC 9 ms
6,272 KB
testcase_02 AC 9 ms
6,272 KB
testcase_03 AC 9 ms
6,272 KB
testcase_04 AC 338 ms
22,984 KB
testcase_05 AC 101 ms
11,084 KB
testcase_06 AC 285 ms
20,592 KB
testcase_07 AC 37 ms
7,680 KB
testcase_08 AC 54 ms
8,576 KB
testcase_09 AC 290 ms
20,796 KB
testcase_10 AC 203 ms
16,312 KB
testcase_11 AC 178 ms
15,088 KB
testcase_12 AC 32 ms
7,424 KB
testcase_13 AC 90 ms
10,220 KB
testcase_14 AC 343 ms
18,052 KB
testcase_15 AC 334 ms
18,056 KB
testcase_16 AC 337 ms
18,064 KB
testcase_17 AC 333 ms
18,072 KB
testcase_18 WA -
testcase_19 AC 348 ms
23,740 KB
testcase_20 AC 349 ms
23,612 KB
testcase_21 AC 347 ms
23,612 KB
testcase_22 AC 348 ms
23,736 KB
testcase_23 AC 360 ms
23,736 KB
testcase_24 AC 10 ms
6,272 KB
testcase_25 AC 10 ms
6,272 KB
testcase_26 AC 354 ms
23,608 KB
testcase_27 AC 340 ms
16,416 KB
testcase_28 AC 339 ms
16,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_595

n,p=map(int,raw_input().split())
h=map(int,raw_input().split())
l=0
r=float('inf')
for i in xrange(1,n):
 l=min((min(l,r)+p),l+max(h[i]-h[i-1],0))
 r=min((min(l,r)+p),r+max(h[i-1]-h[i],0))
print min(l,r)
0