結果

問題 No.118 門松列(2)
ユーザー pekempeypekempey
提出日時 2015-12-20 23:48:01
言語 Python2
(2.7.18)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 7,080 KB
実行使用メモリ 12,296 KB
最終ジャッジ日時 2024-10-09 07:19:33
合計ジャッジ時間 2,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,820 KB
testcase_01 AC 83 ms
12,192 KB
testcase_02 AC 79 ms
12,008 KB
testcase_03 AC 81 ms
12,104 KB
testcase_04 AC 83 ms
12,296 KB
testcase_05 AC 86 ms
12,032 KB
testcase_06 AC 11 ms
6,816 KB
testcase_07 AC 11 ms
6,820 KB
testcase_08 AC 11 ms
6,816 KB
testcase_09 AC 77 ms
11,840 KB
testcase_10 AC 25 ms
7,552 KB
testcase_11 AC 30 ms
7,808 KB
testcase_12 AC 21 ms
7,040 KB
testcase_13 AC 17 ms
6,912 KB
testcase_14 AC 77 ms
11,748 KB
testcase_15 AC 12 ms
6,816 KB
testcase_16 AC 48 ms
9,344 KB
testcase_17 AC 16 ms
6,816 KB
testcase_18 AC 30 ms
7,936 KB
testcase_19 AC 43 ms
9,088 KB
testcase_20 AC 44 ms
9,088 KB
testcase_21 AC 66 ms
10,976 KB
testcase_22 AC 27 ms
7,680 KB
testcase_23 AC 60 ms
10,484 KB
testcase_24 AC 33 ms
8,320 KB
testcase_25 AC 41 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
a = map(int, raw_input().split())
a.sort()

num = [0] * 101
for x in a:
	num[x] += 1

s1, s2, s3 = 0, 0, 0
for x in num:
	s1 += x
	s2 += x * x
	s3 += x * x * x

ans = (s1 ** 3 - s1 * s2 - 2 * s1 * s2 + 2 * s3) / 6
mod = 10 ** 9 + 7
ans %= mod

print ans
0