結果

問題 No.1096 Range Sums
ユーザー neterukunneterukun
提出日時 2020-06-26 21:52:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 99,632 KB
最終ジャッジ日時 2024-07-04 21:43:02
合計ジャッジ時間 1,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,272 KB
testcase_01 AC 35 ms
51,880 KB
testcase_02 AC 35 ms
53,716 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 35 ms
52,552 KB
testcase_05 AC 35 ms
52,888 KB
testcase_06 AC 36 ms
52,948 KB
testcase_07 AC 36 ms
52,532 KB
testcase_08 AC 36 ms
52,688 KB
testcase_09 AC 35 ms
52,836 KB
testcase_10 AC 72 ms
98,320 KB
testcase_11 AC 73 ms
99,632 KB
testcase_12 AC 73 ms
99,472 KB
testcase_13 AC 73 ms
98,800 KB
testcase_14 AC 74 ms
99,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

ans = 0
for i in range(n):
    l_cnt = i + 1
    r_cnt = n - i
    ans += a[i] * l_cnt * r_cnt

print(ans, end='')
0