結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー amesyuamesyu
提出日時 2024-10-24 11:02:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 61,660 KB
最終ジャッジ日時 2024-10-24 11:02:47
合計ジャッジ時間 5,731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,236 KB
testcase_01 AC 35 ms
52,340 KB
testcase_02 AC 35 ms
52,068 KB
testcase_03 AC 46 ms
61,224 KB
testcase_04 AC 37 ms
53,580 KB
testcase_05 AC 39 ms
52,272 KB
testcase_06 AC 35 ms
53,256 KB
testcase_07 AC 41 ms
60,172 KB
testcase_08 AC 36 ms
52,464 KB
testcase_09 AC 36 ms
52,760 KB
testcase_10 AC 42 ms
59,040 KB
testcase_11 AC 36 ms
52,024 KB
testcase_12 AC 41 ms
59,496 KB
testcase_13 AC 46 ms
61,520 KB
testcase_14 AC 42 ms
60,564 KB
testcase_15 AC 45 ms
60,640 KB
testcase_16 AC 45 ms
61,660 KB
testcase_17 AC 41 ms
58,420 KB
testcase_18 AC 36 ms
53,312 KB
testcase_19 AC 42 ms
59,836 KB
testcase_20 AC 42 ms
59,676 KB
testcase_21 AC 46 ms
60,848 KB
04_evil.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
ans = 0
for i in range(n):
    for j in range(n):
        ans += abs(i-j) * abs(a[i]-a[j])

print(ans)
0