結果

問題 No.118 門松列(2)
ユーザー ntudantuda
提出日時 2024-05-19 21:39:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 85,880 KB
最終ジャッジ日時 2024-05-19 21:39:29
合計ジャッジ時間 3,063 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
64,348 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 35 ms
53,552 KB
testcase_07 AC 35 ms
54,644 KB
testcase_08 AC 35 ms
53,724 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())
A = list(map(int,input().split()))

MOD = 10 ** 9 + 7
fact = [1]*(N+1)
rfact = [1]*(N+1)
r = 1
for i in range(1, N+1):
    fact[i] = r = r * i % MOD
rfact[N] = r = pow(fact[N], MOD-2, MOD)
for i in range(N, 0, -1):
    rfact[i-1] = r = r * i % MOD

def comb(n, k):
    return fact[n] * rfact[k] * rfact[n-k] % MOD

C = Counter(A)
NC = len(C)
if NC < 3:
    print(0)
    exit()

ans = comb(NC,3)
for v in C.values():
    ans *= v
    ans %= MOD
print(ans)
0