結果

問題 No.2846 Birthday Cake
ユーザー AyunaAyuna
提出日時 2024-07-15 18:54:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 553 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 90,096 KB
実行使用メモリ 201,600 KB
最終ジャッジ日時 2024-07-15 23:23:07
合計ジャッジ時間 6,151 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 RE -
testcase_03 AC 2 ms
6,940 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 688 ms
9,032 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

// TLE, MLE, RE想定

int main(){
  int k, n;
  cin >> k >> n;
  long long l = 1;
  for (long long i = 2; i <= n; i++){
    l = lcm(l, i);
  }
  vector<long long> dp(l + 1);
  dp[0] = 1;
  for (int i = 0; i < k; i++){
    vector<long long> ndp(l + 1);
    for (int j = 0; j <= l; j++){
      for (int x = 1; x <= n; x++){
        int cake = l / x;
        if (j + cake <= l)
          ndp[j + cake] += dp[j];
      }
    }
    swap(dp, ndp);
  }
  cout << dp[l] << endl;
}
0