結果

問題 No.929 よくあるボールを移動するやつ
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-07 16:07:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,212 KB
最終ジャッジ日時 2024-06-13 01:06:28
合計ジャッジ時間 2,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 129 ms
19,212 KB
testcase_14 AC 136 ms
15,256 KB
testcase_15 AC 136 ms
15,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
b=list(map(int,input().split()))
ans=0
q=deque()
for i in range(n):
    if b[i]==0:
        q.append(i)
    else:
        num=b[i]-1
        while num>0 and q:
            out=q.popleft()
            ans+=i-out
            num-=1
            b[i]-=1
            b[out]+=1
b=b[::-1]
p=deque()
for i in range(n):
    if b[i]==0:
        p.append(i)
    else:
        num=b[i]-1
        while num>0 and q:
            out=p.popleft()
            ans+=i-out
            num-=1
            b[i]-=1
            b[out]+=1
print(ans)
0