結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー Yakumo221Yakumo221
提出日時 2024-10-18 23:08:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 62,312 KB
最終ジャッジ日時 2024-10-18 23:09:02
合計ジャッジ時間 2,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,996 KB
testcase_01 AC 37 ms
53,004 KB
testcase_02 AC 44 ms
52,408 KB
testcase_03 AC 46 ms
61,912 KB
testcase_04 AC 37 ms
52,848 KB
testcase_05 AC 38 ms
52,684 KB
testcase_06 AC 37 ms
52,304 KB
testcase_07 AC 41 ms
59,240 KB
testcase_08 AC 37 ms
53,004 KB
testcase_09 AC 37 ms
52,492 KB
testcase_10 AC 42 ms
59,232 KB
testcase_11 AC 53 ms
52,620 KB
testcase_12 AC 44 ms
60,908 KB
testcase_13 AC 46 ms
62,312 KB
testcase_14 AC 45 ms
61,004 KB
testcase_15 AC 46 ms
62,076 KB
testcase_16 AC 46 ms
62,112 KB
testcase_17 AC 42 ms
58,696 KB
testcase_18 AC 37 ms
51,828 KB
testcase_19 AC 43 ms
59,084 KB
testcase_20 AC 42 ms
59,040 KB
testcase_21 AC 45 ms
61,240 KB
04_evil.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
alist = list(map(int, input().split()))

if n > 100:
    exit()
if max(alist) > 100:
    exit()

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

print(ans)
0