結果

問題 No.1096 Range Sums
ユーザー syunsukesyunsuke
提出日時 2020-09-16 16:39:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 99,780 KB
最終ジャッジ日時 2024-06-22 03:21:12
合計ジャッジ時間 1,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,948 KB
testcase_01 AC 32 ms
51,752 KB
testcase_02 AC 33 ms
52,276 KB
testcase_03 AC 30 ms
52,608 KB
testcase_04 AC 31 ms
52,400 KB
testcase_05 AC 31 ms
51,872 KB
testcase_06 AC 31 ms
52,592 KB
testcase_07 AC 30 ms
53,288 KB
testcase_08 AC 31 ms
52,416 KB
testcase_09 AC 31 ms
52,940 KB
testcase_10 AC 65 ms
98,620 KB
testcase_11 AC 69 ms
99,780 KB
testcase_12 AC 65 ms
99,264 KB
testcase_13 AC 65 ms
98,500 KB
testcase_14 AC 65 ms
98,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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