結果

問題 No.2396 等差二項展開
ユーザー とりゐとりゐ
提出日時 2023-07-28 22:21:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-10-06 19:31:05
合計ジャッジ時間 10,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 45 ms
59,136 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 46 ms
59,904 KB
testcase_08 AC 52 ms
60,672 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 41 ms
52,524 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 WA -
testcase_13 AC 52 ms
62,208 KB
testcase_14 AC 53 ms
62,464 KB
testcase_15 AC 70 ms
66,048 KB
testcase_16 AC 194 ms
68,608 KB
testcase_17 AC 598 ms
71,424 KB
testcase_18 AC 850 ms
73,276 KB
testcase_19 AC 991 ms
73,344 KB
testcase_20 AC 39 ms
52,736 KB
testcase_21 AC 39 ms
51,712 KB
testcase_22 WA -
testcase_23 AC 453 ms
69,504 KB
testcase_24 AC 698 ms
71,552 KB
testcase_25 AC 848 ms
73,344 KB
testcase_26 AC 634 ms
71,424 KB
testcase_27 AC 697 ms
71,296 KB
testcase_28 AC 767 ms
72,876 KB
testcase_29 AC 696 ms
71,552 KB
testcase_30 AC 505 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a,b):
  c=[0]*L
  for i in range(L):
    for j in range(L):
      if i+j>=L:
        c[(i+j)%L]+=a[i]*b[j]%mod*M
      else:
        c[(i+j)]+=a[i]*b[j]%mod
      c[(i+j)%L]%=mod
  return c

N,M,L,K,mod=map(int,input().split())
M%=mod
ans=[0]*L
ans[0]=1
tmp=[0]*L
tmp[0]=1
tmp[1%L]+=1

for i in range(60):
  if (N>>i)&1:
    ans=f(ans,tmp)
  tmp=f(tmp,tmp)

print(ans[K]%mod)
0