結果

問題 No.118 門松列(2)
ユーザー DialBirdDialBird
提出日時 2017-03-24 07:10:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,188 KB
最終ジャッジ日時 2024-07-06 01:29:13
合計ジャッジ時間 4,630 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 170 ms
23,188 KB
testcase_02 AC 164 ms
22,936 KB
testcase_03 AC 169 ms
22,796 KB
testcase_04 AC 165 ms
22,732 KB
testcase_05 AC 164 ms
22,716 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 163 ms
22,752 KB
testcase_10 AC 142 ms
22,112 KB
testcase_11 AC 148 ms
22,340 KB
testcase_12 AC 140 ms
22,400 KB
testcase_13 AC 136 ms
22,144 KB
testcase_14 AC 164 ms
23,112 KB
testcase_15 AC 138 ms
22,144 KB
testcase_16 AC 150 ms
22,904 KB
testcase_17 AC 134 ms
22,272 KB
testcase_18 AC 140 ms
22,476 KB
testcase_19 AC 142 ms
22,348 KB
testcase_20 AC 149 ms
22,332 KB
testcase_21 AC 160 ms
22,872 KB
testcase_22 AC 143 ms
22,308 KB
testcase_23 AC 158 ms
22,952 KB
testcase_24 AC 139 ms
22,348 KB
testcase_25 AC 140 ms
22,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from itertools import combinations

N = int(input())
take = defaultdict(lambda: 0)
devider = 10**9 + 7

for i in [i for i in input().split()]:
    take[i] += 1

# len(take)が3未満でも0になる
res = 0
for a in list(combinations(take.values(), 3)):
    pat = a[0]*a[1]*a[2]
    res += pat
    res %= devider

print(res)
0