結果

問題 No.929 よくあるボールを移動するやつ
ユーザー 👑 KazunKazun
提出日時 2020-09-18 01:51:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 97,852 KB
最終ジャッジ日時 2024-06-22 07:28:23
合計ジャッジ時間 2,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,368 KB
testcase_01 AC 37 ms
54,708 KB
testcase_02 AC 37 ms
54,284 KB
testcase_03 AC 36 ms
54,400 KB
testcase_04 AC 36 ms
55,308 KB
testcase_05 AC 36 ms
55,044 KB
testcase_06 AC 35 ms
54,796 KB
testcase_07 AC 77 ms
81,112 KB
testcase_08 AC 95 ms
97,116 KB
testcase_09 AC 95 ms
97,008 KB
testcase_10 AC 85 ms
97,464 KB
testcase_11 AC 84 ms
97,852 KB
testcase_12 AC 78 ms
97,536 KB
testcase_13 AC 74 ms
97,020 KB
testcase_14 AC 75 ms
97,172 KB
testcase_15 AC 79 ms
96,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N=int(input())
B=list(map(int,input().split()))

C=[i for i in range(N) if not B[i]]
D=[i for i in range(N) if B[i]]

C=deque(C)
D=deque(D)

X=0
while C:
    while B[D[0]]==1:
        _=D.popleft()

    c=C.popleft()
    X+=abs(c-D[0])
    B[D[0]]-=1
    B[c]+=1

print(X)
0