結果

問題 No.2396 等差二項展開
ユーザー ecotteaecottea
提出日時 2023-02-25 02:08:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,338 ms / 6,000 ms
コード長 493 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-10-06 16:28:55
合計ジャッジ時間 11,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 41 ms
51,584 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 42 ms
51,968 KB
testcase_13 AC 50 ms
59,648 KB
testcase_14 AC 49 ms
59,776 KB
testcase_15 AC 59 ms
61,696 KB
testcase_16 AC 249 ms
76,032 KB
testcase_17 AC 873 ms
78,208 KB
testcase_18 AC 1,338 ms
79,360 KB
testcase_19 AC 755 ms
76,544 KB
testcase_20 AC 41 ms
52,352 KB
testcase_21 AC 41 ms
52,224 KB
testcase_22 AC 40 ms
51,968 KB
testcase_23 AC 722 ms
77,568 KB
testcase_24 AC 550 ms
76,416 KB
testcase_25 AC 1,279 ms
78,336 KB
testcase_26 AC 626 ms
76,160 KB
testcase_27 AC 551 ms
76,544 KB
testcase_28 AC 1,228 ms
78,848 KB
testcase_29 AC 550 ms
76,544 KB
testcase_30 AC 811 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, l, k, MOD = map(int, input().split())

if l == 1:
   print(pow(m + 1, n, MOD))
   exit()

def mul(f, g):
    h = [0] * (2 * l)
    for i in range(l):
        for j in range(l):
            h[i + j] += f[i] * g[j]
            h[i + j] %= MOD
    
    for i in range(l):
        h[i] += h[i + l] * m
        h[i] %= MOD
    
    return h

f = [0] * l
f[0] = 1

p = [0] * l
p[0] = 1
p[1] = 1

while n > 0:
    if n % 2 == 1:
        f = mul(f, p)
    p = mul(p, p)
    n //= 2

print(f[k])
0