結果

問題 No.2396 等差二項展開
ユーザー rlangevinrlangevin
提出日時 2023-07-28 23:06:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,104 ms / 6,000 ms
コード長 856 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 76,324 KB
最終ジャッジ日時 2024-10-06 21:03:50
合計ジャッジ時間 11,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,028 KB
testcase_01 AC 40 ms
52,740 KB
testcase_02 AC 39 ms
52,692 KB
testcase_03 AC 39 ms
52,368 KB
testcase_04 AC 40 ms
53,876 KB
testcase_05 AC 39 ms
52,508 KB
testcase_06 AC 40 ms
53,788 KB
testcase_07 AC 40 ms
53,256 KB
testcase_08 AC 40 ms
52,148 KB
testcase_09 AC 40 ms
52,872 KB
testcase_10 AC 38 ms
52,796 KB
testcase_11 AC 38 ms
53,036 KB
testcase_12 AC 39 ms
52,316 KB
testcase_13 AC 47 ms
59,836 KB
testcase_14 AC 48 ms
60,984 KB
testcase_15 AC 57 ms
63,016 KB
testcase_16 AC 190 ms
72,668 KB
testcase_17 AC 544 ms
76,136 KB
testcase_18 AC 833 ms
76,076 KB
testcase_19 AC 1,104 ms
76,100 KB
testcase_20 AC 40 ms
52,560 KB
testcase_21 AC 39 ms
52,736 KB
testcase_22 AC 38 ms
52,692 KB
testcase_23 AC 707 ms
76,044 KB
testcase_24 AC 882 ms
76,284 KB
testcase_25 AC 877 ms
75,988 KB
testcase_26 AC 818 ms
76,024 KB
testcase_27 AC 881 ms
76,188 KB
testcase_28 AC 731 ms
76,188 KB
testcase_29 AC 874 ms
75,820 KB
testcase_30 AC 796 ms
76,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, L, K, B = map(int, input().split())
if L == 1:
    print(pow(1 + M, N, B))
    exit()

now = [0] * L
now[0] = now[1] = 1
lst = []
while N != 1:
    if N % 2 == 0:
        lst.append(1)
        N //= 2
    else:
        lst.append(0)
        N -= 1
lst.reverse()
for flag in lst:
    if flag:
        nex = [0] * (2 * L)
        for i in range(L):
            for j in range(L):
                nex[i + j] += now[i] * now[j]
                nex[i + j] %= B
        for i in range(L, 2 * L):
            nex[i - L] += nex[i] * M
            nex[i - L - 1] %= B
    else:
        nex = [0] * (L + 1)
        for i in range(L):
            nex[i] += now[i]
            nex[i + 1] += now[i]
            nex[i] %= B
            nex[i + 1] %= B
        nex[0] += nex[L] * M
        nex[0] %= B                         
    now = nex[:L]

    
print(now[K])
0