結果

問題 No.243 出席番号(2)
ユーザー 👑 rin204rin204
提出日時 2022-11-02 23:58:24
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 444 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 74,980 KB
最終ジャッジ日時 2024-07-17 11:42:19
合計ジャッジ時間 3,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,724 KB
testcase_01 AC 36 ms
51,996 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 MLE -
testcase_04 AC 53 ms
63,376 KB
testcase_05 AC 53 ms
63,472 KB
testcase_06 AC 53 ms
63,024 KB
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 36 ms
52,832 KB
testcase_29 AC 36 ms
52,160 KB
testcase_30 AC 36 ms
52,492 KB
testcase_31 AC 37 ms
53,468 KB
testcase_32 AC 37 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n = int(input())
cnt = {}
for _ in range(n):
    a = int(input())
    cnt[a] = cnt.get(a, 0) + 1
dp = [0] * (n + 1)
dp[0] = 1

for v in cnt.values():
    for i in range(n, 0, -1):
        dp[i] += dp[i - 1] * v
        dp[i] %= MOD

fact = [1]
for i in range(1, n + 1):
    fact.append(fact[-1] * i % MOD)

ans = 0
pm = 1
for i, d in enumerate(dp):
    ans += pm * d * fact[n - i] % MOD
    pm *= -1
    ans %= MOD
print(ans)
0