結果

問題 No.2396 等差二項展開
ユーザー tassei903tassei903
提出日時 2023-07-28 22:39:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,053 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-06 20:10:34
合計ジャッジ時間 26,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 WA -
testcase_04 AC 40 ms
52,464 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 40 ms
52,864 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 WA -
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 61 ms
66,304 KB
testcase_14 AC 62 ms
66,304 KB
testcase_15 AC 83 ms
72,704 KB
testcase_16 AC 486 ms
76,604 KB
testcase_17 AC 2,076 ms
76,520 KB
testcase_18 AC 3,197 ms
76,752 KB
testcase_19 AC 3,613 ms
77,056 KB
testcase_20 AC 41 ms
52,480 KB
testcase_21 AC 40 ms
51,968 KB
testcase_22 WA -
testcase_23 AC 1,660 ms
77,048 KB
testcase_24 AC 2,479 ms
76,764 KB
testcase_25 AC 1,343 ms
76,900 KB
testcase_26 AC 933 ms
76,800 KB
testcase_27 AC 2,474 ms
76,836 KB
testcase_28 AC 1,778 ms
76,772 KB
testcase_29 AC 2,422 ms
76,868 KB
testcase_30 AC 1,436 ms
76,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n,m,l,k,b = na()


a = [0] * l
a[0] = 1 % b
a[1 % l] = 1 % b

f = [0] * l
f[0] = 1
#print(f, a)
while n:
    if n % 2:
        nf = [0] * l
        for i in range(l):
            for j in range(l):
                if i+j >= l:
                    nf[i+j-l] += f[i] * a[j] % b * m % b
                else:
                    nf[i+j] += f[i] * a[j] % b
                nf[(i+j)%l] %= b
        f = nf
    na = [0] * l
    for i in range(l):
        for j in range(l):
            if i+j >= l:
                na[i+j-l] += a[i] * a[j] % b * m % b
            else:
                na[i+j] += a[i] * a[j] % b
            na[(i+j)%l] %= b
    a = na
    #print(f, a)
    n//=2
#print(f)
print(f[k] % b)
0