結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー tipstar0125tipstar0125
提出日時 2024-10-18 21:26:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 153,596 KB
最終ジャッジ日時 2024-10-18 21:56:00
合計ジャッジ時間 62,684 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,268 KB
testcase_01 AC 33 ms
129,204 KB
testcase_02 AC 34 ms
60,528 KB
testcase_03 AC 44 ms
153,596 KB
testcase_04 AC 35 ms
60,504 KB
testcase_05 AC 35 ms
149,368 KB
testcase_06 AC 35 ms
59,484 KB
testcase_07 AC 39 ms
153,484 KB
testcase_08 AC 37 ms
59,344 KB
testcase_09 AC 35 ms
134,488 KB
testcase_10 AC 40 ms
66,432 KB
testcase_11 AC 36 ms
151,308 KB
testcase_12 AC 40 ms
67,536 KB
testcase_13 AC 44 ms
69,268 KB
testcase_14 AC 41 ms
67,716 KB
testcase_15 AC 42 ms
68,568 KB
testcase_16 AC 44 ms
69,408 KB
testcase_17 AC 38 ms
65,680 KB
testcase_18 AC 35 ms
59,348 KB
testcase_19 AC 39 ms
66,656 KB
testcase_20 AC 41 ms
66,660 KB
testcase_21 AC 42 ms
67,856 KB
04_evil_01.txt TLE -
04_evil_02.txt TLE -
04_evil_03.txt TLE -
04_evil_04.txt TLE -
04_evil_05.txt TLE -
04_evil_06.txt TLE -
04_evil_07.txt TLE -
04_evil_08.txt TLE -
04_evil_09.txt TLE -
04_evil_10.txt TLE -
04_evil_11.txt TLE -
04_evil_12.txt TLE -
04_evil_13.txt TLE -
04_evil_14.txt TLE -
04_evil_15.txt TLE -
04_evil_16.txt TLE -
04_evil_17.txt TLE -
04_evil_18.txt TLE -
04_evil_19.txt TLE -
04_evil_20.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