結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー aa
提出日時 2024-10-19 00:07:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 74,552 KB
最終ジャッジ日時 2024-10-19 00:07:42
合計ジャッジ時間 5,534 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
67,980 KB
testcase_01 AC 43 ms
60,868 KB
testcase_02 AC 45 ms
62,324 KB
testcase_03 AC 63 ms
69,764 KB
testcase_04 AC 50 ms
63,832 KB
testcase_05 AC 47 ms
64,124 KB
testcase_06 AC 44 ms
61,524 KB
testcase_07 AC 51 ms
65,272 KB
testcase_08 AC 44 ms
60,968 KB
testcase_09 AC 47 ms
63,540 KB
testcase_10 AC 52 ms
67,008 KB
testcase_11 AC 51 ms
64,900 KB
testcase_12 AC 53 ms
65,692 KB
testcase_13 AC 62 ms
71,280 KB
testcase_14 AC 70 ms
74,552 KB
testcase_15 AC 56 ms
67,856 KB
testcase_16 AC 64 ms
73,760 KB
testcase_17 AC 50 ms
63,372 KB
testcase_18 AC 42 ms
61,296 KB
testcase_19 AC 49 ms
66,648 KB
testcase_20 AC 48 ms
63,068 KB
testcase_21 AC 47 ms
61,872 KB
04_evil.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n=int(input())
a=list(map(int,input().split()))
b=[[]for i in range(500)]
for i in range(n):
	b[a[i]-1].append(i)
for i in range(500):
	b[i].sort()
d=[]
for i in range(500):
	e=[0]
	for j in b[i]:
		e.append(e[-1]+j)
	d.append(e)
c=0
for i in range(499):
	y=len(b[i])
	for j in range(i+1,500):
		for k in b[j]:
			x=bisect.bisect(b[i],k)
			c+=2*(j-i)*(x*k-d[i][x]+d[i][-1]-d[i][x]-(y-x)*k)
print(c)
0