結果

問題 No.929 よくあるボールを移動するやつ
ユーザー O2MTO2MT
提出日時 2020-12-08 16:12:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 94,996 KB
最終ジャッジ日時 2024-09-17 14:43:27
合計ジャッジ時間 2,612 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,948 KB
testcase_01 AC 34 ms
53,320 KB
testcase_02 AC 38 ms
52,820 KB
testcase_03 AC 37 ms
52,884 KB
testcase_04 AC 36 ms
52,968 KB
testcase_05 AC 34 ms
53,376 KB
testcase_06 AC 36 ms
53,956 KB
testcase_07 AC 197 ms
80,976 KB
testcase_08 AC 245 ms
92,932 KB
testcase_09 AC 242 ms
92,772 KB
testcase_10 AC 198 ms
94,680 KB
testcase_11 AC 186 ms
94,808 KB
testcase_12 AC 195 ms
94,576 KB
testcase_13 AC 115 ms
94,704 KB
testcase_14 AC 115 ms
94,996 KB
testcase_15 AC 119 ms
94,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
N = int(input())
B = list(map(int,input().split()))
zero = []
stock = []
count = 0
for i in range(N):
    if B[i] == 0:
        heappush(zero,i)
    elif B[i] == 1:
        pass
    else:
        heappush(stock,(i,B[i]))
while zero != [] and stock != []:
    z = heappop(zero)
    s,i = heappop(stock)
    if i > 1:
        heappush(stock,(s,i-1))
    else:
        s,i = heappop(stock)
        heappush(stock,(s,i-1))
    count += abs(z-s)
print(count)
0