結果

問題 No.2396 等差二項展開
ユーザー SSRSSSRS
提出日時 2023-07-28 21:43:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 816 bytes
コンパイル時間 1,743 ms
コンパイル使用メモリ 170,908 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-06 18:10:28
合計ジャッジ時間 13,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 WA -
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 12 ms
6,816 KB
testcase_16 AC 164 ms
6,816 KB
testcase_17 AC 724 ms
6,816 KB
testcase_18 AC 1,165 ms
6,820 KB
testcase_19 AC 1,379 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 WA -
testcase_23 AC 603 ms
6,816 KB
testcase_24 AC 951 ms
6,824 KB
testcase_25 AC 1,150 ms
6,816 KB
testcase_26 AC 847 ms
6,820 KB
testcase_27 AC 946 ms
6,820 KB
testcase_28 AC 1,035 ms
6,820 KB
testcase_29 AC 947 ms
6,816 KB
testcase_30 AC 685 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  long long N, M;
  int L, K;
  long long B;
  cin >> N >> M >> L >> K >> B;
  M %= B;
  auto convolution = [&](vector<long long> a, vector<long long> b){
    vector<long long> c(L, 0);
    for (int i = 0; i < L; i++){
      for (int j = 0; j < L; j++){
        if (i + j < L){
          c[i + j] += a[i] * b[j];
          c[i + j] %= B;
        } else {
          c[i + j - L] += a[i] * b[j] % B * M;
          c[i + j - L] %= B;
        }
      }
    }
    return c;
  };
  vector<long long> f(L, 0);
  f[0] += 1;
  f[0] %= B;
  f[1 % L] += 1;
  f[1 % L] %= B;
  vector<long long> g(L, 0);
  g[0] = 1;
  g[0] %= B;
  while (N > 0){
    if (N % 2 == 1){
      g = convolution(g, f);
    }
    f = convolution(f, f);
    N /= 2;
  }
  cout << g[K] << endl;
}
0