結果

問題 No.829 成長関数インフレ中
ユーザー maspymaspy
提出日時 2020-05-03 17:51:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,464 KB
最終ジャッジ日時 2024-06-13 01:49:26
合計ジャッジ時間 4,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 29 ms
10,496 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 296 ms
22,344 KB
testcase_13 AC 48 ms
11,264 KB
testcase_14 AC 218 ms
18,696 KB
testcase_15 AC 165 ms
16,096 KB
testcase_16 AC 284 ms
21,272 KB
testcase_17 AC 474 ms
27,464 KB
testcase_18 AC 451 ms
24,504 KB
testcase_19 AC 393 ms
23,576 KB
testcase_20 AC 489 ms
25,792 KB
testcase_21 AC 191 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

MOD = 10**9 + 7

N, B, *S = map(int, read().split())

counter = [0] * N
for x in S:
    counter[x] += 1

powB = [1] * N
for n in range(1, N):
    powB[n] = powB[n - 1] * B % MOD

used = 0
f = 1
df = 0
for n in counter[::-1]:
    if not n:
        continue
    total = 1
    stay = 1
    for i in range(1, n + 1):
        total *= used + i
        stay *= used + i - 1
        total %= MOD
        stay %= MOD
    a = stay
    b = total - stay
    # a + bx をかける
    g = a + b * B
    dg = b
    f, df = f * g, f * dg + df * g
    f %= MOD
    df %= MOD
    used += n

print(df * B % MOD)
0