結果

問題 No.929 よくあるボールを移動するやつ
ユーザー toyuzukotoyuzuko
提出日時 2020-04-06 22:29:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,764 KB
最終ジャッジ日時 2024-07-07 03:31:03
合計ジャッジ時間 2,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,496 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 49 ms
11,264 KB
testcase_08 AC 83 ms
12,488 KB
testcase_09 AC 84 ms
12,364 KB
testcase_10 AC 88 ms
12,360 KB
testcase_11 AC 93 ms
12,356 KB
testcase_12 AC 89 ms
12,764 KB
testcase_13 AC 86 ms
12,360 KB
testcase_14 AC 88 ms
12,488 KB
testcase_15 AC 89 ms
12,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = list(map(lambda x: int(x) - 1, input().split()))

tmp = 0
res = 0

for i in range(N):
    if B[i] == 0:
        res += abs(tmp)
    elif B[i] == -1:
        tmp -= 1
        res += abs(tmp)
    else:
        tmp += B[i]
        res += abs(tmp)

print(res)
0