結果

問題 No.929 よくあるボールを移動するやつ
ユーザー O2MTO2MT
提出日時 2020-12-08 16:13:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,288 KB
最終ジャッジ日時 2024-09-17 14:43:31
合計ジャッジ時間 2,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 23 ms
10,752 KB
testcase_05 AC 24 ms
10,880 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 90 ms
13,260 KB
testcase_08 AC 194 ms
16,288 KB
testcase_09 AC 195 ms
16,164 KB
testcase_10 AC 199 ms
15,388 KB
testcase_11 AC 226 ms
15,408 KB
testcase_12 AC 254 ms
15,608 KB
testcase_13 AC 183 ms
15,392 KB
testcase_14 AC 183 ms
15,388 KB
testcase_15 AC 174 ms
15,408 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