結果

問題 No.929 よくあるボールを移動するやつ
ユーザー MineMine
提出日時 2020-09-03 13:03:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,652 KB
最終ジャッジ日時 2024-05-02 14:54:53
合計ジャッジ時間 2,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 58 ms
11,264 KB
testcase_08 AC 108 ms
12,540 KB
testcase_09 AC 108 ms
12,536 KB
testcase_10 AC 145 ms
12,408 KB
testcase_11 AC 260 ms
12,536 KB
testcase_12 AC 129 ms
12,652 KB
testcase_13 AC 137 ms
12,536 KB
testcase_14 AC 143 ms
12,412 KB
testcase_15 AC 138 ms
12,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
b = list(map(int, input().split()))

have = deque()
ans = 0
r = 0
for i in range(n):
    if b[i] > 1:
        have.append((i, b[i]))
    if b[i] == 0:
        if have != deque():
            g, p = have.popleft()
            b[i] += 1
            b[g] -= 1
            ans += i-g
            if p-1 > 1:
                have.appendleft((g, p-1))
        else:
            if b[r] > 1:
                g = r
            else:
                for g in range(i, n):
                    if b[g] > 1:
                        r = g
                        break
            b[i] += 1
            b[g] -= 1
            ans += g-i

print(ans)
0