結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー moon17moon17
提出日時 2024-10-18 22:31:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 61,796 KB
最終ジャッジ日時 2024-10-18 22:51:44
合計ジャッジ時間 1,960 ms
ジャッジサーバーID
(参考情報)
judge / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,684 KB
testcase_01 AC 34 ms
52,408 KB
testcase_02 AC 34 ms
52,772 KB
testcase_03 AC 44 ms
61,796 KB
testcase_04 AC 34 ms
53,020 KB
testcase_05 AC 35 ms
53,932 KB
testcase_06 AC 33 ms
52,136 KB
testcase_07 AC 39 ms
60,060 KB
testcase_08 AC 35 ms
54,084 KB
testcase_09 AC 34 ms
52,944 KB
testcase_10 AC 39 ms
59,652 KB
testcase_11 AC 35 ms
52,756 KB
testcase_12 AC 42 ms
59,368 KB
testcase_13 AC 44 ms
61,508 KB
testcase_14 AC 44 ms
61,604 KB
testcase_15 AC 44 ms
60,924 KB
testcase_16 AC 44 ms
60,888 KB
testcase_17 AC 38 ms
59,400 KB
testcase_18 AC 35 ms
53,404 KB
testcase_19 AC 41 ms
59,288 KB
testcase_20 AC 41 ms
60,988 KB
testcase_21 AC 42 ms
60,836 KB
04_evil.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a=map(int,open(0).read().split())
if not(1<=n<=100 and 1<=min(a)<=max(a)<=100):
  exit()
ans=0
for i in range(n):
  for j in range(n):
    ans+=abs(i-j)*abs(a[i]-a[j])
print(ans)
0