結果

問題 No.829 成長関数インフレ中
ユーザー koprickykopricky
提出日時 2018-12-07 00:40:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,382 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,660 KB
最終ジャッジ日時 2024-09-15 13:20:02
合計ジャッジ時間 10,533 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 380 ms
34,536 KB
testcase_13 AC 53 ms
12,416 KB
testcase_14 AC 265 ms
27,108 KB
testcase_15 AC 461 ms
17,892 KB
testcase_16 AC 867 ms
24,788 KB
testcase_17 AC 1,575 ms
34,660 KB
testcase_18 AC 1,652 ms
30,396 KB
testcase_19 AC 1,566 ms
27,848 KB
testcase_20 TLE -
testcase_21 AC 230 ms
24,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:12: SyntaxWarning: "is not" with 'int' literal. Did you mean "!="?
  while w[2] is not 1:
Main.py:12: SyntaxWarning: "is not" with 'int' literal. Did you mean "!="?
  while w[2] is not 1:

ソースコード

diff #

import sys

MOD = 1000000007


def prod(a, b):
    return 0 if a < b else fac[a] * finv[a-b] % MOD


def mod_inverse(a):
    r, w = [1, 0, a], [0, 1, MOD]
    while w[2] is not 1:
        q = r[2] // w[2]
        nw = [r[0]-q*w[0], r[1]-q*w[1], r[2]-q*w[2]]
        r = w
        w = nw
    return (MOD + w[0] % MOD) % MOD


if __name__ == '__main__':
    n, B = map(int, sys.stdin.readline().split())
    cnt, inv, fac, finv = [0]*(n+1), [0]*(n+1), [0]*(n+1), [0]*(n+1)
    for val in list(map(int, sys.stdin.readline().split())):
        cnt[val] += 1
    fac[0] = fac[1] = 1
    finv[0] = finv[1] = 1
    inv[1] = 1
    for i in range(2, n):
        inv[i] = MOD - inv[MOD % i] * (MOD // i) % MOD
        fac[i] = fac[i - 1] * i % MOD
        finv[i] = finv[i - 1] * inv[i] % MOD
    id, ad, ans, s, t, pl = 0, 0, B, 0, 0, B
    flag = False
    for i in range(n-1, -1, -1):
        if cnt[i] == 0:
            continue
        s = prod(id + cnt[i] - 1, cnt[i] - 1) * cnt[i] % MOD
        t = (s * B + prod(id + cnt[i] - 1, cnt[i])) % MOD
        if t > 0:
            ad = (ad + s * mod_inverse(t) % MOD) % MOD
            pl = pl * t % MOD
        else:
            if flag:
                pl = 0
            else:
                flag = True
                pl = pl * s % MOD
        ans = ans * t % MOD
        id += cnt[i]
    print((ans * ad + (pl if flag else 0)) % MOD)
0