結果

問題 No.1096 Range Sums
ユーザー futago0118futago0118
提出日時 2020-07-16 22:47:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 208 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 821,056 KB
最終ジャッジ日時 2024-05-04 03:50:38
合計ジャッジ時間 3,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 MLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())
N = [int(x) for x in range(0,n)]
A = [int(x) for x in input().split()]
ans = sum(A)

C = list(itertools.combinations(N,2))
for i,j in C:
    ans += sum(A[i:j+1])

print(ans)
0