結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,636 KB
testcase_01 AC 36 ms
52,100 KB
testcase_02 AC 37 ms
51,500 KB
testcase_03 AC 38 ms
52,428 KB
testcase_04 AC 37 ms
52,832 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 56 ms
72,796 KB
testcase_14 AC 57 ms
72,896 KB
testcase_15 AC 60 ms
74,680 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] >= 1:
                b[now] -= 1
                b[i] = 1
                #print(now-i,"now")
                ans += abs(now-i)
                break
            else:
                now += 1
print(ans)
0