結果

問題 No.929 よくあるボールを移動するやつ
ユーザー komkompikomkompi
提出日時 2020-03-29 10:26:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,228 KB
最終ジャッジ日時 2024-06-10 18:13:30
合計ジャッジ時間 2,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 58 ms
11,392 KB
testcase_08 AC 88 ms
12,508 KB
testcase_09 AC 88 ms
12,500 KB
testcase_10 AC 104 ms
12,628 KB
testcase_11 AC 105 ms
12,508 KB
testcase_12 AC 92 ms
12,620 KB
testcase_13 AC 96 ms
12,504 KB
testcase_14 AC 106 ms
15,228 KB
testcase_15 AC 94 ms
13,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N=int(input())

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

empty=[]
rem=[]

ans=0
for i in range(len(B)):
    if B[i]==0:
        if len(rem)==0:
            empty.append(i)
        else:
            ans+=(i-rem.pop(-1))
            
    else:
        while B[i]>1 and empty:
            ans+=(i-empty.pop(-1))
            B[i]-=1
        
        for j in range(B[i]-1):
            rem.append(i)
        
print(ans)


0