結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-10-18 21:58:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 62,928 KB
最終ジャッジ日時 2024-10-18 22:43:34
合計ジャッジ時間 2,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,572 KB
testcase_01 AC 37 ms
52,840 KB
testcase_02 AC 37 ms
52,416 KB
testcase_03 AC 47 ms
61,692 KB
testcase_04 AC 38 ms
52,068 KB
testcase_05 AC 37 ms
52,668 KB
testcase_06 AC 36 ms
52,548 KB
testcase_07 AC 42 ms
58,964 KB
testcase_08 AC 38 ms
52,468 KB
testcase_09 AC 38 ms
52,472 KB
testcase_10 AC 43 ms
60,504 KB
testcase_11 AC 38 ms
52,004 KB
testcase_12 AC 44 ms
60,100 KB
testcase_13 AC 47 ms
62,928 KB
testcase_14 AC 44 ms
60,664 KB
testcase_15 AC 47 ms
61,964 KB
testcase_16 AC 46 ms
61,788 KB
testcase_17 AC 42 ms
58,632 KB
testcase_18 AC 37 ms
53,960 KB
testcase_19 AC 43 ms
59,928 KB
testcase_20 AC 42 ms
59,120 KB
testcase_21 AC 45 ms
61,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