結果

問題 No.503 配列コレクション
ユーザー maspymaspy
提出日時 2020-04-08 12:39:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,438 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 123,028 KB
最終ジャッジ日時 2024-07-18 09:35:18
合計ジャッジ時間 20,506 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 714 ms
122,312 KB
testcase_01 AC 715 ms
122,252 KB
testcase_02 AC 706 ms
122,016 KB
testcase_03 AC 705 ms
121,828 KB
testcase_04 RE -
testcase_05 AC 706 ms
122,076 KB
testcase_06 AC 708 ms
122,084 KB
testcase_07 AC 703 ms
121,832 KB
testcase_08 AC 702 ms
121,908 KB
testcase_09 AC 706 ms
122,288 KB
testcase_10 AC 711 ms
122,156 KB
testcase_11 AC 707 ms
122,380 KB
testcase_12 AC 705 ms
121,844 KB
testcase_13 AC 718 ms
122,024 KB
testcase_14 AC 715 ms
121,776 KB
testcase_15 AC 706 ms
121,812 KB
testcase_16 AC 697 ms
121,732 KB
testcase_17 AC 708 ms
122,220 KB
testcase_18 AC 709 ms
121,768 KB
testcase_19 RE -
testcase_20 AC 705 ms
121,796 KB
testcase_21 RE -
testcase_22 AC 703 ms
121,960 KB
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
MOD = 10 ** 9 + 7
N, K, D = map(int, read().split())


def cumprod(A, MOD=MOD):
    L = len(A)
    Lsq = int(L**.5 + 1)
    A = np.resize(A, Lsq**2).reshape(Lsq, Lsq)
    for n in range(1, Lsq):
        A[:, n] *= A[:, n - 1]
        A[:, n] %= MOD
    for n in range(1, Lsq):
        A[n] *= A[n - 1, -1]
        A[n] %= MOD
    return A.ravel()[:L]


def make_fact(U, MOD=MOD):
    x = np.arange(U, dtype=np.int64)
    x[0] = 1
    fact = cumprod(x, MOD)
    x = np.arange(U, 0, -1, dtype=np.int64)
    x[0] = pow(int(fact[-1]), MOD - 2, MOD)
    fact_inv = cumprod(x, MOD)[::-1]
    fact.flags.writeable = False
    fact_inv.flags.writeable = False
    return fact, fact_inv


def make_power(a, L, MOD=MOD):
    B = L.bit_length()
    x = np.empty((1 << B), np.int64)
    x[0] = 1
    for n in range(B):
        x[1 << n:1 << (n + 1)] = x[:1 << n] * a % MOD
        a *= a
        a %= MOD
    x = x[:L]
    x.flags.writeable = False
    return x


L = N % (K - 1)
if not L:
    L = K - 1
S = (N - L) // (K - 1)

fact, fact_inv = make_fact(2 * 10 ** 6 + 10)
power = make_power(D, S + 1)
coef = fact[L - 2: L + S - 1][::-1] * fact_inv[0: S + 1][::-1] % MOD * fact_inv[L - 2] % MOD
x = (coef * power % MOD).sum() % MOD
answer = x * L % MOD
if D == 1:
    answer = L
print(answer)
0