結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,272 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 9 ms
6,272 KB
testcase_03 AC 9 ms
6,016 KB
testcase_04 AC 342 ms
22,988 KB
testcase_05 AC 103 ms
10,832 KB
testcase_06 AC 288 ms
20,336 KB
testcase_07 AC 39 ms
7,552 KB
testcase_08 AC 54 ms
8,448 KB
testcase_09 AC 290 ms
20,796 KB
testcase_10 AC 206 ms
16,312 KB
testcase_11 AC 184 ms
14,832 KB
testcase_12 AC 34 ms
7,424 KB
testcase_13 AC 98 ms
10,220 KB
testcase_14 AC 336 ms
18,180 KB
testcase_15 AC 340 ms
18,060 KB
testcase_16 AC 335 ms
17,940 KB
testcase_17 AC 342 ms
18,068 KB
testcase_18 WA -
testcase_19 AC 353 ms
23,608 KB
testcase_20 AC 350 ms
23,612 KB
testcase_21 AC 356 ms
23,740 KB
testcase_22 AC 359 ms
23,480 KB
testcase_23 AC 356 ms
23,736 KB
testcase_24 AC 10 ms
6,144 KB
testcase_25 AC 10 ms
6,144 KB
testcase_26 AC 352 ms
23,596 KB
testcase_27 AC 344 ms
16,416 KB
testcase_28 AC 348 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