結果

問題 No.1077 Noelちゃんと星々4
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-16 23:28:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-09-25 02:26:47
合計ジャッジ時間 2,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,864 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 53 ms
62,464 KB
testcase_03 AC 56 ms
64,384 KB
testcase_04 AC 43 ms
57,856 KB
testcase_05 AC 45 ms
52,608 KB
testcase_06 AC 48 ms
60,160 KB
testcase_07 AC 46 ms
59,392 KB
testcase_08 AC 51 ms
59,264 KB
testcase_09 AC 44 ms
57,728 KB
testcase_10 AC 54 ms
63,616 KB
testcase_11 AC 50 ms
61,184 KB
testcase_12 AC 49 ms
60,544 KB
testcase_13 AC 41 ms
52,736 KB
testcase_14 AC 54 ms
63,616 KB
testcase_15 AC 46 ms
60,288 KB
testcase_16 AC 47 ms
59,136 KB
testcase_17 AC 48 ms
61,440 KB
testcase_18 AC 53 ms
64,000 KB
testcase_19 AC 39 ms
52,608 KB
testcase_20 AC 37 ms
52,224 KB
testcase_21 AC 55 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

n = int(input())
H = list(map(int,input().split()))
ans = 0

lis = []
for h in H:
    if lis and lis[0] < -h:
        l = -heappop(lis)
        ans += abs(l-h)
        heappush(lis,-h)
    heappush(lis,-h)
print(ans)
0