結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-04 11:30:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 61,676 KB
最終ジャッジ日時 2024-11-04 11:30:15
合計ジャッジ時間 2,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,392 KB
testcase_01 AC 37 ms
52,056 KB
testcase_02 AC 36 ms
52,924 KB
testcase_03 AC 46 ms
61,240 KB
testcase_04 AC 37 ms
53,228 KB
testcase_05 AC 37 ms
53,220 KB
testcase_06 AC 37 ms
53,616 KB
testcase_07 AC 42 ms
60,080 KB
testcase_08 AC 37 ms
52,640 KB
testcase_09 AC 36 ms
53,256 KB
testcase_10 AC 43 ms
59,444 KB
testcase_11 AC 37 ms
53,180 KB
testcase_12 AC 42 ms
60,108 KB
testcase_13 AC 46 ms
61,624 KB
testcase_14 AC 44 ms
61,188 KB
testcase_15 AC 45 ms
61,644 KB
testcase_16 AC 45 ms
61,676 KB
testcase_17 AC 40 ms
58,460 KB
testcase_18 AC 36 ms
52,180 KB
testcase_19 AC 42 ms
60,928 KB
testcase_20 AC 41 ms
59,928 KB
testcase_21 AC 44 ms
60,444 KB
04_evil.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

if N > 100:
    print(0)
    exit()

ans = 0
for i in range(N):
    for j in range(N):
        ans += abs(A[i] - A[j]) * abs(i - j)

print(ans)
0