結果

問題 No.243 出席番号(2)
ユーザー mkawa2mkawa2
提出日時 2023-02-24 11:50:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 771 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,736 KB
最終ジャッジ日時 2024-09-13 01:27:40
合計ジャッジ時間 21,472 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
44,356 KB
testcase_01 AC 526 ms
44,232 KB
testcase_02 AC 521 ms
44,348 KB
testcase_03 AC 524 ms
44,480 KB
testcase_04 AC 534 ms
44,228 KB
testcase_05 AC 536 ms
44,484 KB
testcase_06 AC 530 ms
44,220 KB
testcase_07 AC 530 ms
44,348 KB
testcase_08 AC 552 ms
44,224 KB
testcase_09 AC 539 ms
44,612 KB
testcase_10 AC 529 ms
44,092 KB
testcase_11 AC 535 ms
44,196 KB
testcase_12 AC 555 ms
44,348 KB
testcase_13 AC 575 ms
44,068 KB
testcase_14 AC 543 ms
44,488 KB
testcase_15 AC 536 ms
44,356 KB
testcase_16 AC 537 ms
44,736 KB
testcase_17 AC 592 ms
44,608 KB
testcase_18 AC 600 ms
44,096 KB
testcase_19 AC 557 ms
44,732 KB
testcase_20 AC 552 ms
44,220 KB
testcase_21 AC 550 ms
44,356 KB
testcase_22 AC 679 ms
44,096 KB
testcase_23 AC 643 ms
44,228 KB
testcase_24 AC 577 ms
44,100 KB
testcase_25 AC 559 ms
44,608 KB
testcase_26 AC 547 ms
44,476 KB
testcase_27 AC 771 ms
44,404 KB
testcase_28 AC 519 ms
44,268 KB
testcase_29 AC 531 ms
44,100 KB
testcase_30 AC 531 ms
44,348 KB
testcase_31 AC 532 ms
44,608 KB
testcase_32 AC 516 ms
44,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

md = 10**9+7

from array import array
import numpy as np

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

dp = np.zeros(n+1, "i8")
dp[0] = 1
for a in range(n):
    if cnt[a] == 0: continue
    dp[1:n+1] += dp[:n]*cnt[a]
    dp %= 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