結果

問題 No.929 よくあるボールを移動するやつ
ユーザー MineMine
提出日時 2020-09-03 13:07:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 12,664 KB
最終ジャッジ日時 2024-11-23 08:00:56
合計ジャッジ時間 2,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 63 ms
11,392 KB
testcase_08 AC 109 ms
12,540 KB
testcase_09 AC 110 ms
12,412 KB
testcase_10 AC 135 ms
12,408 KB
testcase_11 AC 253 ms
12,544 KB
testcase_12 AC 126 ms
12,520 KB
testcase_13 AC 143 ms
12,660 KB
testcase_14 AC 125 ms
12,408 KB
testcase_15 AC 132 ms
12,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

have = []
ans = 0
r = 0
for i in range(n):
    if b[i] > 1:
        have.append((i, b[i]))
    if b[i] == 0:
        if have != []:
            g, p = have.pop()
            b[i] += 1
            b[g] -= 1
            ans += i-g
            if p-1 > 1:
                have.append((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