結果

問題 No.595 登山
ユーザー titiatitia
提出日時 2024-12-19 01:44:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,628 KB
最終ジャッジ日時 2024-12-19 01:44:18
合計ジャッジ時間 7,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 RE -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 WA -
testcase_16 WA -
testcase_17 RE -
testcase_18 RE -
testcase_19 WA -
testcase_20 RE -
testcase_21 WA -
testcase_22 RE -
testcase_23 WA -
testcase_24 RE -
testcase_25 AC 27 ms
10,624 KB
testcase_26 AC 268 ms
32,620 KB
testcase_27 AC 250 ms
24,372 KB
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,P=map(int,input().split())
A=list(map(int,input().split()))

USE=[0]*N
for i in range(1,N-1):
    if A[i-1]<=A[i]<=A[i+1]:
        USE[i]=1
    if A[i-1]>=A[i]>=A[i+1]:
        USE[i]=1

B=[]
for i in range(N):
    if USE[i]==0:
        B.append(A[i])

if len(B)>=2 and B[0]>=B[1]:
    B.pop(0)

ANS=0

for i in range(0,len(B),2):
    ANS+=min(B[i+1]-B[i],P)

print(ANS)
0