結果

問題 No.243 出席番号(2)
ユーザー shotoyooshotoyoo
提出日時 2021-06-23 23:00:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 799 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,084 KB
最終ジャッジ日時 2024-06-24 23:26:09
合計ジャッジ時間 10,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,824 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 103 ms
10,880 KB
testcase_04 AC 50 ms
10,752 KB
testcase_05 AC 39 ms
10,752 KB
testcase_06 AC 37 ms
10,752 KB
testcase_07 RE -
testcase_08 AC 306 ms
10,880 KB
testcase_09 AC 99 ms
11,008 KB
testcase_10 AC 60 ms
11,008 KB
testcase_11 AC 48 ms
10,880 KB
testcase_12 RE -
testcase_13 AC 654 ms
11,136 KB
testcase_14 AC 189 ms
11,008 KB
testcase_15 AC 96 ms
10,880 KB
testcase_16 AC 64 ms
10,880 KB
testcase_17 RE -
testcase_18 AC 1,167 ms
11,264 KB
testcase_19 AC 290 ms
11,264 KB
testcase_20 AC 148 ms
11,008 KB
testcase_21 AC 96 ms
11,008 KB
testcase_22 RE -
testcase_23 AC 1,812 ms
11,392 KB
testcase_24 AC 494 ms
11,136 KB
testcase_25 AC 199 ms
11,136 KB
testcase_26 AC 120 ms
11,136 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

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)]
count = [0]*n
for v in (a):
    count[v] += 1
M = 10**9+7
ans = 0
dp = [0]*(n+1)
dp[0] = 1
for k in range(n):
    v = count[k]
    if v==0:
        continue
    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