結果

問題 No.243 出席番号(2)
ユーザー shotoyooshotoyoo
提出日時 2021-06-23 23:07:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 917 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 44,148 KB
最終ジャッジ日時 2024-06-24 23:32:23
合計ジャッジ時間 20,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 507 ms
43,616 KB
testcase_01 AC 494 ms
43,384 KB
testcase_02 AC 498 ms
43,500 KB
testcase_03 AC 507 ms
43,504 KB
testcase_04 AC 503 ms
43,612 KB
testcase_05 AC 502 ms
43,612 KB
testcase_06 AC 497 ms
43,508 KB
testcase_07 RE -
testcase_08 AC 512 ms
43,640 KB
testcase_09 AC 504 ms
43,360 KB
testcase_10 AC 498 ms
43,612 KB
testcase_11 AC 498 ms
43,760 KB
testcase_12 RE -
testcase_13 AC 543 ms
43,740 KB
testcase_14 AC 511 ms
43,512 KB
testcase_15 AC 508 ms
43,360 KB
testcase_16 AC 498 ms
43,632 KB
testcase_17 RE -
testcase_18 AC 571 ms
43,872 KB
testcase_19 AC 530 ms
43,764 KB
testcase_20 AC 513 ms
43,352 KB
testcase_21 AC 498 ms
43,764 KB
testcase_22 RE -
testcase_23 AC 601 ms
43,612 KB
testcase_24 AC 535 ms
43,764 KB
testcase_25 AC 510 ms
43,488 KB
testcase_26 AC 511 ms
43,740 KB
testcase_27 AC 741 ms
43,768 KB
testcase_28 AC 503 ms
43,612 KB
testcase_29 AC 494 ms
43,612 KB
testcase_30 AC 495 ms
43,868 KB
testcase_31 AC 499 ms
43,360 KB
testcase_32 AC 499 ms
43,352 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))

import numpy as np
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 = np.zeros(n+1, dtype=np.int64)
dp[0] = 1
for k in range(n):
    v = count[k]
    if v==0:
        continue
    ndp = np.array(dp)
    ndp[1:] += dp[:-1]*v%M
    dp = ndp
#     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]
dp = dp.tolist()
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