結果

問題 No.929 よくあるボールを移動するやつ
ユーザー ああいいああいい
提出日時 2022-02-23 22:04:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 80,004 KB
最終ジャッジ日時 2024-07-01 22:39:08
合計ジャッジ時間 2,273 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,264 KB
testcase_01 AC 38 ms
52,576 KB
testcase_02 AC 39 ms
52,064 KB
testcase_03 AC 38 ms
52,048 KB
testcase_04 AC 39 ms
52,344 KB
testcase_05 AC 37 ms
52,304 KB
testcase_06 AC 38 ms
51,964 KB
testcase_07 AC 50 ms
67,548 KB
testcase_08 AC 61 ms
79,036 KB
testcase_09 AC 61 ms
79,380 KB
testcase_10 AC 60 ms
80,004 KB
testcase_11 AC 59 ms
77,996 KB
testcase_12 AC 58 ms
77,852 KB
testcase_13 AC 58 ms
78,196 KB
testcase_14 AC 58 ms
78,320 KB
testcase_15 AC 60 ms
78,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = list(map(int,input().split()))

now = 0
ans = 0
for i in range(N):
    now -= 1
    now += B[i]
    ans += abs(now)
print(ans)
0