結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 190 ms
23,444 KB
testcase_02 AC 189 ms
22,956 KB
testcase_03 AC 193 ms
23,164 KB
testcase_04 AC 195 ms
22,880 KB
testcase_05 AC 197 ms
22,976 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 189 ms
22,836 KB
testcase_10 AC 166 ms
22,360 KB
testcase_11 AC 163 ms
22,720 KB
testcase_12 AC 167 ms
22,272 KB
testcase_13 AC 158 ms
22,400 KB
testcase_14 AC 190 ms
23,276 KB
testcase_15 AC 167 ms
22,272 KB
testcase_16 AC 175 ms
22,900 KB
testcase_17 AC 169 ms
22,144 KB
testcase_18 AC 168 ms
22,472 KB
testcase_19 AC 175 ms
22,588 KB
testcase_20 AC 174 ms
22,340 KB
testcase_21 AC 188 ms
22,864 KB
testcase_22 AC 167 ms
22,052 KB
testcase_23 AC 184 ms
22,956 KB
testcase_24 AC 167 ms
22,484 KB
testcase_25 AC 169 ms
22,372 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.keys(), 3)):
    pat = take[a[0]] * take[a[1]] * take[a[2]]
    res += pat
    res %= devider

print(res)
0