結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー pluto77pluto77
提出日時 2024-10-26 09:20:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,004 KB
最終ジャッジ日時 2024-10-26 09:20:30
合計ジャッジ時間 5,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,100 KB
testcase_01 AC 37 ms
52,828 KB
testcase_02 AC 37 ms
52,572 KB
testcase_03 AC 46 ms
61,040 KB
testcase_04 AC 37 ms
53,256 KB
testcase_05 AC 37 ms
52,704 KB
testcase_06 AC 37 ms
52,404 KB
testcase_07 AC 43 ms
59,724 KB
testcase_08 AC 37 ms
52,184 KB
testcase_09 AC 37 ms
52,336 KB
testcase_10 AC 42 ms
58,740 KB
testcase_11 AC 37 ms
52,960 KB
testcase_12 AC 44 ms
59,248 KB
testcase_13 AC 47 ms
62,004 KB
testcase_14 AC 44 ms
59,852 KB
testcase_15 AC 46 ms
60,392 KB
testcase_16 AC 47 ms
61,516 KB
testcase_17 AC 41 ms
60,044 KB
testcase_18 AC 37 ms
52,196 KB
testcase_19 AC 44 ms
59,548 KB
testcase_20 AC 43 ms
59,660 KB
testcase_21 AC 45 ms
61,416 KB
04_evil.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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