結果

問題 No.2846 Birthday Cake
ユーザー tottoripapertottoripaper
提出日時 2024-08-24 13:28:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 206,112 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-08-24 13:28:24
合計ジャッジ時間 5,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,816 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 68 ms
10,496 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 72 ms
11,008 KB
testcase_06 AC 77 ms
11,520 KB
testcase_07 AC 81 ms
11,776 KB
testcase_08 AC 85 ms
12,288 KB
testcase_09 AC 91 ms
12,672 KB
testcase_10 AC 95 ms
13,184 KB
testcase_11 AC 100 ms
13,696 KB
testcase_12 AC 66 ms
10,624 KB
testcase_13 AC 81 ms
11,776 KB
testcase_14 AC 41 ms
9,600 KB
testcase_15 AC 63 ms
11,520 KB
testcase_16 AC 74 ms
12,288 KB
testcase_17 AC 101 ms
13,952 KB
testcase_18 AC 115 ms
14,464 KB
testcase_19 AC 12 ms
6,944 KB
testcase_20 AC 22 ms
6,940 KB
testcase_21 AC 6 ms
6,944 KB
testcase_22 AC 37 ms
7,936 KB
testcase_23 AC 28 ms
6,944 KB
testcase_24 AC 86 ms
12,672 KB
testcase_25 AC 4 ms
6,948 KB
testcase_26 AC 37 ms
8,832 KB
testcase_27 AC 50 ms
10,112 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 61 ms
11,392 KB
testcase_30 AC 6 ms
6,940 KB
testcase_31 AC 24 ms
6,940 KB
testcase_32 AC 72 ms
11,904 KB
testcase_33 AC 87 ms
12,800 KB
testcase_34 AC 57 ms
10,496 KB
testcase_35 AC 64 ms
11,392 KB
testcase_36 AC 78 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = std::int64_t;

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int K, N;
    std::cin >> K >> N;

    const int EXCEPTIONS = (1 << 13) | (1 << 17) | (1 << 19) | (1 << 23);
    const int MAX_DEN = 55440;

    std::vector dp(K + 1, std::vector<ll>(MAX_DEN + 1, 0));
    dp[0][0] = 1;
    for(int i=0;i<K;i++){
        for(int j=0;j<=MAX_DEN;j++){
            for(int k=1;k<=N;k++){
                if(EXCEPTIONS >> k & 1){continue;}
                int num = MAX_DEN / k;
                if(j + num <= MAX_DEN){
                    dp[i + 1][j + num] += dp[i][j];
                }
            }
        }
    }

    ll res = dp[K][MAX_DEN];
    if(EXCEPTIONS >> K & 1){
        res += 1;
    }
    std::cout << res << std::endl;
}
0