結果

問題 No.929 よくあるボールを移動するやつ
ユーザー flippergoflippergo
提出日時 2024-11-13 18:12:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 1,931 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 86,800 KB
最終ジャッジ日時 2024-11-13 18:12:10
合計ジャッジ時間 2,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,004 KB
testcase_01 AC 36 ms
52,544 KB
testcase_02 AC 38 ms
52,972 KB
testcase_03 AC 36 ms
52,348 KB
testcase_04 AC 36 ms
53,456 KB
testcase_05 AC 36 ms
52,268 KB
testcase_06 AC 37 ms
53,428 KB
testcase_07 AC 62 ms
74,532 KB
testcase_08 AC 74 ms
84,228 KB
testcase_09 AC 72 ms
85,368 KB
testcase_10 AC 68 ms
85,848 KB
testcase_11 AC 66 ms
83,256 KB
testcase_12 AC 60 ms
79,732 KB
testcase_13 AC 59 ms
78,256 KB
testcase_14 AC 67 ms
86,800 KB
testcase_15 AC 67 ms
83,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = list(map(int,input().split()))
ans = 0
L = []
for i in range(N):
    if B[i]==0:
        L.append(i)
    elif B[i]>1:
        d = B[i]-1
        while d>0 and L:
            j = L.pop()
            B[j] = 1
            ans += i-j
            d -= 1
        if d>0:
            B[i+1] += d
            ans += d
print(ans)
0