結果

問題 No.1096 Range Sums
ユーザー yansi819yansi819
提出日時 2024-05-09 13:06:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 100,868 KB
最終ジャッジ日時 2024-12-16 02:25:12
合計ジャッジ時間 2,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,640 KB
testcase_01 AC 42 ms
52,540 KB
testcase_02 AC 42 ms
53,280 KB
testcase_03 AC 42 ms
52,672 KB
testcase_04 AC 40 ms
53,140 KB
testcase_05 AC 40 ms
53,140 KB
testcase_06 AC 40 ms
52,640 KB
testcase_07 AC 42 ms
52,188 KB
testcase_08 AC 40 ms
53,348 KB
testcase_09 AC 40 ms
52,464 KB
testcase_10 AC 83 ms
100,860 KB
testcase_11 AC 84 ms
99,708 KB
testcase_12 AC 83 ms
100,144 KB
testcase_13 AC 81 ms
100,576 KB
testcase_14 AC 83 ms
100,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [0] + list(map(int, input().split()))

ans = 0
for i in range(1, N + 1):
    ans += A[i] * i * (N - i + 1)

print(ans)
0