結果

問題 No.2846 Birthday Cake
ユーザー Takuto-OnikuboTakuto-Onikubo
提出日時 2024-08-23 22:17:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 1,630 ms
コンパイル使用メモリ 173,400 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 22:17:23
合計ジャッジ時間 3,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 5 ms
6,944 KB
testcase_02 AC 18 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 18 ms
6,940 KB
testcase_06 AC 19 ms
6,940 KB
testcase_07 AC 20 ms
6,944 KB
testcase_08 AC 22 ms
6,944 KB
testcase_09 AC 23 ms
6,944 KB
testcase_10 AC 24 ms
6,940 KB
testcase_11 AC 24 ms
6,944 KB
testcase_12 AC 17 ms
6,940 KB
testcase_13 AC 19 ms
6,940 KB
testcase_14 AC 11 ms
6,940 KB
testcase_15 AC 16 ms
6,940 KB
testcase_16 AC 18 ms
6,944 KB
testcase_17 AC 24 ms
6,944 KB
testcase_18 AC 27 ms
6,944 KB
testcase_19 AC 5 ms
6,944 KB
testcase_20 AC 8 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 10 ms
6,944 KB
testcase_23 AC 9 ms
6,944 KB
testcase_24 AC 22 ms
6,944 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 11 ms
6,940 KB
testcase_27 AC 13 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 16 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 8 ms
6,940 KB
testcase_32 AC 19 ms
6,940 KB
testcase_33 AC 21 ms
6,940 KB
testcase_34 AC 15 ms
6,944 KB
testcase_35 AC 16 ms
6,940 KB
testcase_36 AC 20 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
#define rep(i, a, b) for(ll i = a; i < b; ++i)
#define rrep(i, a, b) for(ll i = a; i >= b; --i)
constexpr ll inf = 4e18;
struct SetupIO {
    SetupIO() {
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout << fixed << setprecision(30);
    }
} setup_io;
using dd = long double;
using vl = vector<ll>;
using vvl = vector<vl>;
using vd = vector<dd>;
using vvd = vector<vd>;

ll gcd(ll a, ll b) {
    if (b == 0) return a;
    return gcd(b, a%b);
}

int main(void) {
    int k, n;
    cin >> k >> n;

    ll ans = 0;
    set<int> s = {13, 17, 19, 23};
    if(s.find(k) != s.end()) ans++;

    ll mul = 16*9*5*7*11;
    vector<ll> dp(mul+1, 0);
    dp[0] = 1;

    rep(i, 0, k) {
        vector<ll> ndp(mul+1, 0);
        rep(j, 1, n+1) {
            if(mul % j != 0) continue;
            rep(l, 0, mul) {
                if(l + mul / j <= mul) ndp[l + mul / j] += dp[l];
            }
        }
        swap(dp, ndp);
    }

    cout << dp[mul] + ans << '\n';
}
0