結果
問題 | No.2846 Birthday Cake |
ユーザー | kwm_t |
提出日時 | 2024-08-24 16:57:54 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,367 bytes |
コンパイル時間 | 2,790 ms |
コンパイル使用メモリ | 249,844 KB |
実行使用メモリ | 14,464 KB |
最終ジャッジ日時 | 2024-08-24 16:58:01 |
合計ジャッジ時間 | 6,241 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
6,816 KB |
testcase_01 | AC | 11 ms
6,948 KB |
testcase_02 | AC | 74 ms
10,496 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 8 ms
6,940 KB |
testcase_05 | AC | 77 ms
11,008 KB |
testcase_06 | WA | - |
testcase_07 | AC | 89 ms
11,776 KB |
testcase_08 | WA | - |
testcase_09 | AC | 97 ms
12,672 KB |
testcase_10 | AC | 107 ms
13,312 KB |
testcase_11 | AC | 112 ms
13,568 KB |
testcase_12 | AC | 78 ms
10,624 KB |
testcase_13 | AC | 96 ms
11,776 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 123 ms
14,464 KB |
testcase_19 | AC | 11 ms
6,940 KB |
testcase_20 | AC | 24 ms
6,940 KB |
testcase_21 | AC | 6 ms
6,940 KB |
testcase_22 | AC | 35 ms
7,936 KB |
testcase_23 | AC | 31 ms
6,944 KB |
testcase_24 | AC | 99 ms
12,672 KB |
testcase_25 | AC | 4 ms
6,944 KB |
testcase_26 | AC | 38 ms
8,832 KB |
testcase_27 | AC | 50 ms
10,112 KB |
testcase_28 | AC | 3 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | AC | 6 ms
6,944 KB |
testcase_31 | AC | 26 ms
6,944 KB |
testcase_32 | AC | 79 ms
11,776 KB |
testcase_33 | AC | 99 ms
12,672 KB |
testcase_34 | AC | 70 ms
10,496 KB |
testcase_35 | WA | - |
testcase_36 | AC | 85 ms
11,776 KB |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/all> using namespace std; //using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; //const int INF = 1e9; //const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n) - 1; i >= 0; --i) #define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define P pair<int,int> template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, m; cin >> n >> m; const int mx = 55440; vector dp(n + 1, vector<long long>(mx + 1, 0)); dp[0][0] = 1; rep(i, n) { int ni = i + 1; rep(j, mx + 1) { rep2(k, 1, m + 1) { if (0 != mx % k)continue; int add = mx / k; int nj = j + add; if (nj > mx)continue; dp[ni][nj] += dp[i][j]; } } } long long ans = dp[n][mx]; //cout << ans << endl; if (0 == mx % n && (13 == n || 17 == n || 19 == n || 23 == n))ans++; cout << ans << endl; return 0; }