結果

問題 No.929 よくあるボールを移動するやつ
ユーザー stngstng
提出日時 2022-08-15 10:32:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 80,088 KB
最終ジャッジ日時 2024-10-01 23:11:17
合計ジャッジ時間 1,817 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,600 KB
testcase_01 AC 36 ms
52,808 KB
testcase_02 AC 36 ms
53,308 KB
testcase_03 AC 37 ms
52,636 KB
testcase_04 AC 37 ms
52,028 KB
testcase_05 AC 37 ms
53,176 KB
testcase_06 AC 36 ms
52,964 KB
testcase_07 AC 53 ms
68,228 KB
testcase_08 AC 63 ms
78,312 KB
testcase_09 AC 63 ms
77,620 KB
testcase_10 AC 61 ms
78,900 KB
testcase_11 AC 62 ms
80,088 KB
testcase_12 AC 59 ms
75,788 KB
testcase_13 AC 54 ms
72,860 KB
testcase_14 AC 55 ms
73,332 KB
testcase_15 AC 57 ms
73,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
b = [int(i) for i in input().split()]

now = 0
ans = 0
for i in range(n):
    if b[i] == 0:
        for j in range(n):
            if b[now] >= 2:
                b[now] -= 1
                b[i] = 1
                #print(now-i,"now")
                ans += abs(now-i)
                break
            else:
                now += 1
print(ans)
0