結果

問題 No.243 出席番号(2)
ユーザー shotoyooshotoyoo
提出日時 2021-06-23 22:58:53
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 764 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 77,856 KB
最終ジャッジ日時 2024-06-24 23:22:16
合計ジャッジ時間 3,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,108 KB
testcase_01 AC 40 ms
54,748 KB
testcase_02 AC 40 ms
53,928 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 AC 49 ms
63,172 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 40 ms
54,544 KB
testcase_29 AC 40 ms
54,480 KB
testcase_30 AC 40 ms
54,392 KB
testcase_31 AC 40 ms
55,132 KB
testcase_32 AC 40 ms
54,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
a = [int(input()) for _ in range(n)]
from collections import Counter
count = Counter(a)
M = 10**9+7
ans = 0
dp = [0]*(n+1)
dp[0] = 1
for k,v in count.items():
    ndp = [0]*(n+1)
    for b in range(n):
        val = dp[b]
        if val==0:
            continue
        ndp[b] += val
        ndp[b+1] += v*val%M
        ndp[b] %= M
        ndp[b+1] %= M
    dp = ndp
g = [1]
for i in range(1,n+1):
    g.append(g[-1]*i%M)
s = 1
for i in range(n+1):
    ans += s * dp[i] * g[n-i] % M
    ans %= M
    s *= -1
print(ans%M)
0