結果

問題 No.243 出席番号(2)
ユーザー mkawa2mkawa2
提出日時 2023-02-24 11:44:18
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 470 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 77,208 KB
最終ジャッジ日時 2024-09-13 01:27:13
合計ジャッジ時間 6,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,764 KB
testcase_01 AC 37 ms
52,584 KB
testcase_02 AC 37 ms
52,900 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
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 37 ms
53,124 KB
testcase_29 AC 36 ms
53,200 KB
testcase_30 AC 37 ms
53,864 KB
testcase_31 AC 38 ms
53,180 KB
testcase_32 AC 37 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

md = 10**9+7

from array import array

n = int(input())
cnt = array("I", [0]*n)
for _ in range(n):
    a = int(input())
    cnt[a] += 1

dp = array("Q", [1]+[0]*n)
for a in range(n):
    if cnt[a] == 0: continue
    for i in range(n)[::-1]:
        dp[i+1] += dp[i]*cnt[a]%md
        dp[i+1] %= md

ans = 0
f = 1
for i in range(n+1)[::-1]:
    cur = dp[i]*f%md
    if i & 1:
        ans -= cur
    else:
        ans += cur
    ans %= md
    f = f*(n+1-i)%md

print(ans)
0