結果

問題 No.929 よくあるボールを移動するやつ
ユーザー H20H20
提出日時 2020-11-20 10:12:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 88,544 KB
最終ジャッジ日時 2024-07-23 12:00:26
合計ジャッジ時間 1,858 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,552 KB
testcase_01 AC 37 ms
51,876 KB
testcase_02 AC 36 ms
52,356 KB
testcase_03 AC 36 ms
52,004 KB
testcase_04 AC 38 ms
52,136 KB
testcase_05 AC 38 ms
52,524 KB
testcase_06 AC 37 ms
52,656 KB
testcase_07 AC 70 ms
75,804 KB
testcase_08 AC 85 ms
88,544 KB
testcase_09 AC 85 ms
88,456 KB
testcase_10 AC 72 ms
85,824 KB
testcase_11 AC 67 ms
84,376 KB
testcase_12 AC 73 ms
81,276 KB
testcase_13 AC 61 ms
79,676 KB
testcase_14 AC 64 ms
81,080 KB
testcase_15 AC 66 ms
81,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
L = list(map(int, input().split()))
for i in range(N):
    L[i] -=1
ans = 0
temp = 0
for i in range(N):
    if L[i]<0:
        for j in range(max(i+1,temp),N):
            if L[j]>0:
                L[i]=0
                L[j]-=1
                ans +=j-i
                temp = j
                break
    if L[i]>0:
        j = i+1
        while L[i]>0 and j<N:
            if L[j]<0:
                L[j]=0
                L[i]-=1
                ans +=j-i
            j+=1
print(ans)

0