結果

問題 No.2846 Birthday Cake
ユーザー hiro1729hiro1729
提出日時 2024-08-23 23:01:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 2,914 ms
コンパイル使用メモリ 251,964 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-08-23 23:01:31
合計ジャッジ時間 4,871 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 6 ms
6,944 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 33 ms
11,520 KB
testcase_07 AC 34 ms
11,904 KB
testcase_08 AC 36 ms
12,416 KB
testcase_09 AC 37 ms
12,800 KB
testcase_10 AC 39 ms
13,184 KB
testcase_11 AC 40 ms
13,696 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 31 ms
11,904 KB
testcase_14 AC 17 ms
9,728 KB
testcase_15 AC 26 ms
11,520 KB
testcase_16 AC 30 ms
12,416 KB
testcase_17 AC 39 ms
14,080 KB
testcase_18 AC 47 ms
14,592 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 14 ms
8,064 KB
testcase_23 AC 12 ms
6,944 KB
testcase_24 AC 35 ms
12,800 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 16 ms
8,832 KB
testcase_27 AC 22 ms
10,240 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 25 ms
11,520 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 11 ms
6,940 KB
testcase_32 AC 30 ms
11,904 KB
testcase_33 AC 34 ms
12,800 KB
testcase_34 AC 23 ms
10,624 KB
testcase_35 AC 26 ms
11,520 KB
testcase_36 AC 31 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
	int K, N;
	cin >> K >> N;
	vector<vector<ll>> dp(K + 1, vector<ll>(55441));
	dp[0][0] = 1;
	vector<int> A;
	for (int i = 1; i <= N; i++) {
		if (i != 13 && i != 17 && i != 19 && i != 23) {
			A.push_back(55440 / i);
		}
	}
	for (int i = 0; i < K; i++) {
		for (int j = 0; j <= 55440; j++) {
			for (int k: A) {
				if (j + k <= 55440) {
					dp[i + 1][j + k] += dp[i][j];
				}
			}
		}
	}
	ll ans = dp[K][55440];
	if (K == 13 || K == 17 || K == 19 || K == 23) ans++;
	cout << ans << '\n';
}
0