結果

問題 No.2846 Birthday Cake
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-06-27 16:59:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 75,648 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-07-15 23:23:02
合計ジャッジ時間 7,775 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,376 KB
testcase_01 AC 27 ms
5,888 KB
testcase_02 AC 219 ms
10,624 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 17 ms
5,376 KB
testcase_05 AC 237 ms
11,008 KB
testcase_06 AC 254 ms
11,520 KB
testcase_07 AC 268 ms
11,904 KB
testcase_08 AC 281 ms
12,416 KB
testcase_09 AC 296 ms
12,928 KB
testcase_10 AC 309 ms
13,184 KB
testcase_11 AC 322 ms
13,696 KB
testcase_12 AC 215 ms
10,624 KB
testcase_13 AC 255 ms
12,032 KB
testcase_14 AC 110 ms
9,728 KB
testcase_15 AC 183 ms
11,520 KB
testcase_16 AC 228 ms
12,416 KB
testcase_17 AC 322 ms
14,208 KB
testcase_18 AC 348 ms
14,592 KB
testcase_19 AC 24 ms
6,400 KB
testcase_20 AC 63 ms
6,400 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 99 ms
8,064 KB
testcase_23 AC 85 ms
6,656 KB
testcase_24 AC 281 ms
12,800 KB
testcase_25 AC 6 ms
5,376 KB
testcase_26 AC 108 ms
8,832 KB
testcase_27 AC 141 ms
10,240 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 179 ms
11,520 KB
testcase_30 AC 12 ms
5,376 KB
testcase_31 AC 67 ms
6,656 KB
testcase_32 AC 233 ms
12,032 KB
testcase_33 AC 284 ms
12,800 KB
testcase_34 AC 177 ms
10,624 KB
testcase_35 AC 198 ms
11,520 KB
testcase_36 AC 243 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
using ll = long long;

int main() {
    ll K, N;
    cin >> K >> N;
    ll max_c = 55440;
    vector<vector<ll>> dp(K + 1, vector<ll>(max_c + 1, 0));
    dp[0][0] = 1;
    for (ll i = 0; i < K; i++) {
        for (ll j = 0; j <= max_c; j++) {
            for (ll k = 1; k <= N; k++) {
                if (max_c % k != 0) {
                    continue;
                }
                ll div = 55440 / k;
                if (j + div <= max_c) {
                    dp[i + 1][j + div] += dp[i][j];
                }
            }
        }
    }
    ll ans = dp[K][max_c];
    if (max_c % K != 0) {
        ans++;
    }
    cout << ans << endl;
}
0