結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー 👑 rin204rin204
提出日時 2024-10-19 00:21:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 62,160 KB
最終ジャッジ日時 2024-10-19 00:22:00
合計ジャッジ時間 5,035 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,576 KB
testcase_01 AC 36 ms
52,508 KB
testcase_02 AC 36 ms
52,640 KB
testcase_03 AC 45 ms
62,160 KB
testcase_04 AC 36 ms
52,216 KB
testcase_05 AC 35 ms
52,064 KB
testcase_06 AC 38 ms
53,564 KB
testcase_07 AC 41 ms
59,552 KB
testcase_08 AC 37 ms
52,680 KB
testcase_09 AC 37 ms
52,208 KB
testcase_10 AC 41 ms
58,712 KB
testcase_11 AC 36 ms
53,032 KB
testcase_12 AC 43 ms
60,360 KB
testcase_13 AC 45 ms
60,920 KB
testcase_14 AC 44 ms
61,196 KB
testcase_15 AC 44 ms
61,104 KB
testcase_16 AC 46 ms
61,656 KB
testcase_17 AC 41 ms
59,400 KB
testcase_18 AC 36 ms
52,224 KB
testcase_19 AC 43 ms
59,388 KB
testcase_20 AC 43 ms
58,880 KB
testcase_21 AC 44 ms
60,148 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