結果

問題 No.2846 Birthday Cake
ユーザー ochiaigawaochiaigawa
提出日時 2024-08-23 23:15:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 2,461 ms
コンパイル使用メモリ 207,364 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-08-23 23:15:51
合計ジャッジ時間 6,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,040 KB
testcase_01 AC 16 ms
7,168 KB
testcase_02 AC 95 ms
12,160 KB
testcase_03 AC 7 ms
6,944 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 100 ms
12,288 KB
testcase_06 AC 108 ms
13,056 KB
testcase_07 AC 114 ms
13,184 KB
testcase_08 AC 131 ms
14,080 KB
testcase_09 AC 141 ms
14,080 KB
testcase_10 AC 156 ms
14,976 KB
testcase_11 AC 192 ms
14,976 KB
testcase_12 AC 89 ms
12,160 KB
testcase_13 AC 114 ms
13,184 KB
testcase_14 AC 54 ms
11,520 KB
testcase_15 AC 97 ms
13,184 KB
testcase_16 AC 123 ms
14,080 KB
testcase_17 AC 169 ms
15,616 KB
testcase_18 AC 187 ms
15,744 KB
testcase_19 AC 16 ms
7,936 KB
testcase_20 AC 28 ms
7,936 KB
testcase_21 AC 10 ms
6,940 KB
testcase_22 AC 43 ms
9,728 KB
testcase_23 AC 34 ms
7,936 KB
testcase_24 AC 131 ms
14,080 KB
testcase_25 AC 8 ms
6,944 KB
testcase_26 AC 47 ms
10,496 KB
testcase_27 AC 68 ms
11,520 KB
testcase_28 AC 7 ms
6,940 KB
testcase_29 AC 90 ms
13,184 KB
testcase_30 AC 10 ms
6,940 KB
testcase_31 AC 29 ms
7,936 KB
testcase_32 AC 108 ms
13,184 KB
testcase_33 AC 147 ms
14,080 KB
testcase_34 AC 78 ms
12,288 KB
testcase_35 AC 95 ms
13,184 KB
testcase_36 AC 113 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;
int main() {
  cin.tie(0); cout.tie(0);
  ios::sync_with_stdio(false);
  const int M = 2 * 2 * 2 * 2 * 3 * 3 * 5 * 7 * 11;
  vector<int> u = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 21, 22, 24};
  int K, N;
  cin >> K >> N;
  vector<vector<long long>> dp(M + 1, vector<long long>(K + 1));
  dp[0][0] = 1;
  for(int j = 0; j < K; j++) {
    for(int i = 0; i < M; i++) {
      for(int v : u) {
        if(v > N) {
          break;
        }
        int k = M / v + i;
        if(k > M) {
          continue;
        }
        dp[k][j + 1] += dp[i][j];
      }
    }
  }
  if(K == 13 || K == 17 || K == 19 || K == 23) {
    dp[M][K] += K <= N;
  }
  cout << dp[M][K] << '\n';
  return 0;
}
0