結果

問題 No.929 よくあるボールを移動するやつ
ユーザー ntudantuda
提出日時 2024-09-15 22:27:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-09-15 22:27:09
合計ジャッジ時間 2,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,028 KB
testcase_01 AC 39 ms
53,220 KB
testcase_02 AC 38 ms
53,068 KB
testcase_03 AC 38 ms
52,128 KB
testcase_04 AC 39 ms
53,292 KB
testcase_05 AC 39 ms
52,764 KB
testcase_06 AC 38 ms
52,544 KB
testcase_07 AC 56 ms
68,728 KB
testcase_08 AC 70 ms
80,680 KB
testcase_09 AC 68 ms
82,024 KB
testcase_10 AC 66 ms
81,984 KB
testcase_11 AC 66 ms
82,432 KB
testcase_12 AC 65 ms
80,824 KB
testcase_13 AC 63 ms
80,576 KB
testcase_14 AC 63 ms
79,696 KB
testcase_15 AC 68 ms
82,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = list(map(int, input().split()))
A = [0] * N
j = 0
for i, b in enumerate(B):
    while b > 0:
        A[j] = i
        j += 1
        b -= 1
ans = 0
for i in range(N):
    ans += abs(A[i] - i)
print(ans)
0