結果

問題 No.118 門松列(2)
ユーザー steek79steek79
提出日時 2015-11-19 01:04:40
言語 Python2
(2.7.18)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 12,252 KB
最終ジャッジ日時 2024-10-09 07:11:23
合計ジャッジ時間 3,532 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,528 KB
testcase_01 AC 142 ms
12,252 KB
testcase_02 AC 140 ms
11,940 KB
testcase_03 AC 142 ms
12,156 KB
testcase_04 AC 144 ms
12,228 KB
testcase_05 AC 143 ms
12,092 KB
testcase_06 AC 12 ms
6,272 KB
testcase_07 AC 12 ms
6,400 KB
testcase_08 AC 13 ms
6,272 KB
testcase_09 AC 141 ms
11,904 KB
testcase_10 AC 91 ms
7,552 KB
testcase_11 AC 96 ms
7,936 KB
testcase_12 AC 87 ms
7,168 KB
testcase_13 AC 84 ms
6,656 KB
testcase_14 AC 135 ms
11,688 KB
testcase_15 AC 78 ms
6,528 KB
testcase_16 AC 110 ms
9,592 KB
testcase_17 AC 83 ms
6,912 KB
testcase_18 AC 94 ms
7,936 KB
testcase_19 AC 106 ms
8,832 KB
testcase_20 AC 109 ms
9,216 KB
testcase_21 AC 127 ms
10,752 KB
testcase_22 AC 91 ms
7,680 KB
testcase_23 AC 121 ms
10,368 KB
testcase_24 AC 97 ms
8,192 KB
testcase_25 AC 105 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

N = input()
A = map(int, raw_input().split())
MOD = 10**9+7

dic = dict()
for a in A:
    dic[a] = dic.get(a, 0) + 1

uniq = list(set(A))
combs = itertools.combinations(uniq, 3)
ans = 0

for comb in combs:
    n = dic[comb[0]] * dic[comb[1]] * dic[comb[2]]
    ans += n

print ans%MOD
0