結果

問題 No.243 出席番号(2)
ユーザー 👑 rin204rin204
提出日時 2022-11-03 00:00:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,692 KB
最終ジャッジ日時 2024-07-17 11:43:37
合計ジャッジ時間 11,161 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,692 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 126 ms
10,496 KB
testcase_04 AC 62 ms
10,624 KB
testcase_05 AC 51 ms
10,496 KB
testcase_06 AC 42 ms
10,624 KB
testcase_07 AC 91 ms
10,496 KB
testcase_08 AC 405 ms
10,752 KB
testcase_09 AC 149 ms
10,752 KB
testcase_10 AC 91 ms
10,752 KB
testcase_11 AC 68 ms
10,752 KB
testcase_12 AC 483 ms
10,624 KB
testcase_13 AC 853 ms
10,752 KB
testcase_14 AC 288 ms
10,880 KB
testcase_15 AC 159 ms
10,752 KB
testcase_16 AC 96 ms
10,880 KB
testcase_17 AC 1,363 ms
10,880 KB
testcase_18 AC 1,521 ms
10,880 KB
testcase_19 AC 505 ms
10,880 KB
testcase_20 AC 257 ms
10,880 KB
testcase_21 AC 164 ms
10,624 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n = int(input())
cnt = {}
for _ in range(n):
    a = int(input())
    if a >= n:
        continue
    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