結果

問題 No.243 出席番号(2)
ユーザー mkawa2mkawa2
提出日時 2023-02-24 11:42:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 448 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,820 KB
最終ジャッジ日時 2024-09-13 01:26:57
合計ジャッジ時間 10,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,692 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 156 ms
10,752 KB
testcase_04 AC 70 ms
10,752 KB
testcase_05 AC 53 ms
10,880 KB
testcase_06 AC 46 ms
10,752 KB
testcase_07 RE -
testcase_08 AC 535 ms
10,880 KB
testcase_09 AC 179 ms
10,752 KB
testcase_10 AC 102 ms
10,752 KB
testcase_11 AC 75 ms
10,880 KB
testcase_12 RE -
testcase_13 AC 1,155 ms
10,752 KB
testcase_14 AC 376 ms
10,880 KB
testcase_15 AC 184 ms
10,880 KB
testcase_16 AC 110 ms
10,880 KB
testcase_17 RE -
testcase_18 AC 1,998 ms
11,008 KB
testcase_19 AC 617 ms
11,008 KB
testcase_20 AC 319 ms
10,880 KB
testcase_21 AC 187 ms
10,880 KB
testcase_22 RE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

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

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