結果

問題 No.2846 Birthday Cake
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-06-26 00:10:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 728 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 77,180 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-07-15 23:23:05
合計ジャッジ時間 7,392 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 30 ms
6,944 KB
testcase_02 AC 237 ms
10,752 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 18 ms
6,940 KB
testcase_05 AC 251 ms
10,880 KB
testcase_06 WA -
testcase_07 AC 284 ms
11,904 KB
testcase_08 WA -
testcase_09 AC 313 ms
12,672 KB
testcase_10 AC 329 ms
13,056 KB
testcase_11 AC 345 ms
13,696 KB
testcase_12 AC 228 ms
10,496 KB
testcase_13 AC 271 ms
11,904 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 375 ms
14,592 KB
testcase_19 AC 27 ms
6,944 KB
testcase_20 AC 68 ms
6,940 KB
testcase_21 AC 16 ms
6,940 KB
testcase_22 AC 110 ms
8,064 KB
testcase_23 AC 93 ms
6,940 KB
testcase_24 AC 302 ms
12,800 KB
testcase_25 AC 7 ms
6,944 KB
testcase_26 AC 112 ms
8,832 KB
testcase_27 AC 151 ms
10,112 KB
testcase_28 AC 4 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 13 ms
6,940 KB
testcase_31 AC 73 ms
6,944 KB
testcase_32 AC 253 ms
11,904 KB
testcase_33 AC 302 ms
12,800 KB
testcase_34 AC 189 ms
10,624 KB
testcase_35 WA -
testcase_36 AC 261 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;
    if (K == N && max_c % N != 0) {
        cout << 1 << endl;
        return 0;
    }
    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];
                }
            }
        }
    }
    cout << dp[K][max_c] << endl;
}
0