結果

問題 No.1096 Range Sums
ユーザー mlihua09mlihua09
提出日時 2020-09-14 00:48:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 99,432 KB
最終ジャッジ日時 2024-06-13 04:49:44
合計ジャッジ時間 2,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,240 KB
testcase_01 AC 39 ms
52,680 KB
testcase_02 AC 37 ms
52,556 KB
testcase_03 AC 37 ms
51,944 KB
testcase_04 AC 38 ms
52,680 KB
testcase_05 AC 37 ms
52,700 KB
testcase_06 AC 37 ms
52,456 KB
testcase_07 AC 37 ms
52,688 KB
testcase_08 AC 42 ms
52,544 KB
testcase_09 AC 37 ms
52,280 KB
testcase_10 AC 78 ms
99,432 KB
testcase_11 AC 76 ms
98,364 KB
testcase_12 AC 77 ms
98,164 KB
testcase_13 AC 77 ms
98,244 KB
testcase_14 AC 77 ms
98,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = list(map(int, input().split()))
ans = 0


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