結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー nikoro256nikoro256
提出日時 2024-10-18 22:19:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 62,080 KB
最終ジャッジ日時 2024-10-18 22:49:44
合計ジャッジ時間 2,035 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,424 KB
testcase_01 AC 36 ms
52,600 KB
testcase_02 AC 35 ms
52,864 KB
testcase_03 AC 45 ms
62,044 KB
testcase_04 AC 36 ms
52,636 KB
testcase_05 AC 47 ms
52,832 KB
testcase_06 AC 35 ms
53,104 KB
testcase_07 AC 41 ms
60,236 KB
testcase_08 AC 36 ms
53,956 KB
testcase_09 AC 36 ms
52,440 KB
testcase_10 AC 49 ms
60,068 KB
testcase_11 AC 35 ms
52,400 KB
testcase_12 AC 40 ms
59,444 KB
testcase_13 AC 45 ms
62,080 KB
testcase_14 AC 42 ms
60,444 KB
testcase_15 AC 43 ms
60,604 KB
testcase_16 AC 42 ms
61,116 KB
testcase_17 AC 38 ms
60,052 KB
testcase_18 AC 34 ms
53,216 KB
testcase_19 AC 41 ms
59,216 KB
testcase_20 AC 40 ms
59,148 KB
testcase_21 AC 43 ms
60,136 KB
04_evil.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
ans=0
if N>=200:
    exit(0)
for i in range(N):
    for j in range(N):
        ans+=abs(i-j)*abs(A[i]-A[j])
print(ans)
0