結果

問題 No.243 出席番号(2)
ユーザー shotoyooshotoyoo
提出日時 2021-06-23 23:11:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 770 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,976 KB
最終ジャッジ日時 2024-06-24 23:37:12
合計ジャッジ時間 21,709 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
43,628 KB
testcase_01 AC 528 ms
43,628 KB
testcase_02 AC 530 ms
43,884 KB
testcase_03 AC 527 ms
43,976 KB
testcase_04 AC 524 ms
43,756 KB
testcase_05 AC 527 ms
43,856 KB
testcase_06 AC 531 ms
43,728 KB
testcase_07 AC 527 ms
43,860 KB
testcase_08 AC 553 ms
43,736 KB
testcase_09 AC 550 ms
43,752 KB
testcase_10 AC 541 ms
43,860 KB
testcase_11 AC 527 ms
43,604 KB
testcase_12 AC 557 ms
43,624 KB
testcase_13 AC 578 ms
43,760 KB
testcase_14 AC 534 ms
43,876 KB
testcase_15 AC 537 ms
43,888 KB
testcase_16 AC 534 ms
43,752 KB
testcase_17 AC 609 ms
43,732 KB
testcase_18 AC 630 ms
43,884 KB
testcase_19 AC 564 ms
43,476 KB
testcase_20 AC 541 ms
43,756 KB
testcase_21 AC 532 ms
43,476 KB
testcase_22 AC 667 ms
43,468 KB
testcase_23 AC 640 ms
43,764 KB
testcase_24 AC 558 ms
43,464 KB
testcase_25 AC 549 ms
43,480 KB
testcase_26 AC 539 ms
43,728 KB
testcase_27 AC 770 ms
43,624 KB
testcase_28 AC 516 ms
43,880 KB
testcase_29 AC 521 ms
43,468 KB
testcase_30 AC 546 ms
43,592 KB
testcase_31 AC 541 ms
43,856 KB
testcase_32 AC 541 ms
43,884 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]*5000
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
    dp[1:] += dp[:-1]*v%M
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