結果

問題 No.2846 Birthday Cake
ユーザー ochiaigawaochiaigawa
提出日時 2024-08-23 23:14:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 818 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 209,236 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-08-23 23:14:26
合計ジャッジ時間 6,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
7,168 KB
testcase_01 AC 15 ms
7,168 KB
testcase_02 AC 90 ms
12,288 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 10 ms
6,944 KB
testcase_05 AC 92 ms
12,288 KB
testcase_06 WA -
testcase_07 AC 113 ms
13,184 KB
testcase_08 WA -
testcase_09 AC 138 ms
14,080 KB
testcase_10 AC 154 ms
14,976 KB
testcase_11 AC 152 ms
14,848 KB
testcase_12 AC 85 ms
12,288 KB
testcase_13 AC 109 ms
13,056 KB
testcase_14 AC 51 ms
11,520 KB
testcase_15 AC 96 ms
13,184 KB
testcase_16 AC 109 ms
13,952 KB
testcase_17 AC 159 ms
15,744 KB
testcase_18 AC 167 ms
15,744 KB
testcase_19 AC 14 ms
8,064 KB
testcase_20 AC 26 ms
7,936 KB
testcase_21 AC 9 ms
6,940 KB
testcase_22 AC 40 ms
9,728 KB
testcase_23 AC 32 ms
7,936 KB
testcase_24 AC 126 ms
13,952 KB
testcase_25 AC 8 ms
6,944 KB
testcase_26 AC 46 ms
10,496 KB
testcase_27 AC 63 ms
11,520 KB
testcase_28 AC 6 ms
6,940 KB
testcase_29 AC 85 ms
13,184 KB
testcase_30 AC 9 ms
6,944 KB
testcase_31 AC 29 ms
7,936 KB
testcase_32 AC 111 ms
13,184 KB
testcase_33 AC 123 ms
13,952 KB
testcase_34 AC 73 ms
12,288 KB
testcase_35 WA -
testcase_36 AC 103 ms
13,184 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(N == 13 || N == 17 || N == 19 || N == 23) {
    dp[M][K] += N == K;
  }
  cout << dp[M][K] << '\n';
  return 0;
}
0