結果

問題 No.2846 Birthday Cake
ユーザー AyunaAyuna
提出日時 2024-07-15 18:38:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 782 ms
コンパイル使用メモリ 77,644 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-07-15 23:22:54
合計ジャッジ時間 4,790 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 93 ms
10,624 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 97 ms
11,008 KB
testcase_06 AC 100 ms
11,520 KB
testcase_07 AC 107 ms
11,904 KB
testcase_08 AC 117 ms
12,416 KB
testcase_09 AC 125 ms
12,800 KB
testcase_10 AC 128 ms
13,184 KB
testcase_11 AC 137 ms
13,696 KB
testcase_12 AC 87 ms
10,624 KB
testcase_13 AC 104 ms
11,904 KB
testcase_14 AC 24 ms
6,944 KB
testcase_15 AC 74 ms
11,520 KB
testcase_16 AC 93 ms
12,416 KB
testcase_17 AC 130 ms
14,208 KB
testcase_18 AC 143 ms
14,592 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 27 ms
6,944 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 43 ms
8,064 KB
testcase_23 AC 35 ms
6,940 KB
testcase_24 AC 115 ms
12,800 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 24 ms
6,944 KB
testcase_27 AC 63 ms
10,240 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 75 ms
11,520 KB
testcase_30 AC 4 ms
6,940 KB
testcase_31 AC 30 ms
6,940 KB
testcase_32 AC 100 ms
11,904 KB
testcase_33 AC 114 ms
12,800 KB
testcase_34 AC 73 ms
10,624 KB
testcase_35 AC 84 ms
11,520 KB
testcase_36 AC 102 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <numeric>

using namespace std;

int main(){
  int k, n;
  cin >> k >> n;
  int l = 1;
  int cnt = 0;
  for (int i = 1; i <= n; i++){
    if (i != 13 && i != 17 && i != 19 && i != 23) l = lcm(l, i);
    else cnt++;
  }
  vector dp(k + 1, vector<long long>(l + 1));
  // dp[i][j] = (i人目までの取り分を決めたときにその総和がjであるような分け方)
  dp[0][0] = 1;
  for (int i = 0; i < k; i++){
    for (int j = 0; j <= l; j++){
      for (int x = 1; x <= n; x++){
        if (l % x == 0){
          int cake = l / x;
          if (j + cake <= l)
            dp[i + 1][j + cake] += dp[i][j];
        }
      }
    }
  }
  long long ans = dp[k][l];
  if (k == 13 || k == 17 || k == 19 || k == 23) ans++;
  cout << ans << endl;
}
0