結果

問題 No.695 square1001 and Permutation 4
ユーザー ei1333333ei1333333
提出日時 2018-06-08 22:48:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 577 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 199,584 KB
実行使用メモリ 159,872 KB
最終ジャッジ日時 2024-07-22 19:13:43
合計ジャッジ時間 4,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 18 ms
11,264 KB
testcase_02 AC 56 ms
42,496 KB
testcase_03 AC 51 ms
42,496 KB
testcase_04 AC 82 ms
42,496 KB
testcase_05 AC 96 ms
42,496 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 42 ms
18,944 KB
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using int64 = long long;

// えーなんか人生という気持ちになると
// Ax_1+Bx_2+Cx_3+Dx_4+Ex_5=n なる (A,B,C,D,E)を見つければ良くて

int N, M, X[5];
int64 dp[20000000];
const int64 mod = 100000000000000007;

int main() {
  cin >> N >> M;
  for(int i = 0; i < M; i++) cin >> X[i];

  dp[0] = 1;
  for(int k = 0; k < N; k++) {
    for(int i = 0; i < M; i++) {
      if(k - X[i] >= 0) {
        dp[k] += dp[k - X[i]];
        if(dp[k] >= mod) dp[k] -= mod;
      }
    }
  }

  cout << dp[N - 1] << endl;
}
0