結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー hiro1729hiro1729
提出日時 2024-10-18 21:20:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 162,644 KB
最終ジャッジ日時 2024-10-18 21:21:51
合計ジャッジ時間 62,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,852 KB
testcase_01 AC 40 ms
62,468 KB
testcase_02 AC 40 ms
62,052 KB
testcase_03 AC 57 ms
162,644 KB
testcase_04 AC 41 ms
61,976 KB
testcase_05 AC 40 ms
149,872 KB
testcase_06 AC 42 ms
62,520 KB
testcase_07 AC 49 ms
150,016 KB
testcase_08 AC 40 ms
61,008 KB
testcase_09 AC 40 ms
142,836 KB
testcase_10 AC 48 ms
69,268 KB
testcase_11 AC 40 ms
156,168 KB
testcase_12 AC 50 ms
69,376 KB
testcase_13 AC 58 ms
161,864 KB
testcase_14 AC 59 ms
74,908 KB
testcase_15 AC 54 ms
160,140 KB
testcase_16 AC 57 ms
73,316 KB
testcase_17 AC 47 ms
152,496 KB
testcase_18 AC 41 ms
62,316 KB
testcase_19 AC 56 ms
71,652 KB
testcase_20 AC 52 ms
71,464 KB
testcase_21 AC 55 ms
161,620 KB
04_evil_01.txt TLE -
04_evil_02.txt TLE -
04_evil_03.txt TLE -
04_evil_04.txt TLE -
04_evil_05.txt TLE -
04_evil_06.txt TLE -
04_evil_07.txt TLE -
04_evil_08.txt TLE -
04_evil_09.txt TLE -
04_evil_10.txt TLE -
04_evil_11.txt TLE -
04_evil_12.txt TLE -
04_evil_13.txt TLE -
04_evil_14.txt TLE -
04_evil_15.txt TLE -
04_evil_16.txt TLE -
04_evil_17.txt TLE -
04_evil_18.txt TLE -
04_evil_19.txt TLE -
04_evil_20.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict as dd
S = input
R = range
P = print
def I(): return int(S())
def M(): return map(int, S().split())
def L(): return list(M())
def O(): return list(map(int, open(0).read().split()))
def yn(b): print("Yes" if b else "No")
biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
smaa = "abcdefghijklmnopqrstuvwxyz"
ctoi = lambda c: ord(c) - ord('a')
itoc = lambda i: chr(ord('a') + i)
inf = 10 ** 18
mod = 998244353
def acc(a):
	b = [0]
	for i in a:
		b.append(b[-1] + i)
	return b

n=I();a=L()
P(sum(abs(i-j)*abs(a[i]-a[j])for i in R(n)for j in R(n)))
0