結果
問題 | No.1077 Noelちゃんと星々4 |
ユーザー | Tsubo |
提出日時 | 2020-06-12 21:44:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 761 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-24 04:43:33 |
合計ジャッジ時間 | 1,498 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
ソースコード
from sys import stdin def main(): #入力 readline=stdin.readline n=int(readline()) y=list(map(int,readline().split())) i=0 ans=0 while i<n: if i==0: if y[i]>y[i+1]: ans+=y[i]-y[i+1] y[i]=y[i+1] elif 0<i<n-1: if y[i-1]>y[i]: new_y=y[i-1] ans+=abs(new_y-y[i]) y[i]=new_y elif y[i]>y[i+1]: new_y=max(y[i-1],y[i+1]) ans+=abs(new_y-y[i]) y[i]=new_y elif i==n-1: if y[i-1]>y[i]: new_y=y[i-1] ans+=abs(new_y-y[i]) y[i]=new_y i+=1 print(ans) if __name__=="__main__": main()