結果

問題 No.1532 Different Products
ユーザー optopt
提出日時 2021-06-04 23:13:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 615 ms / 4,000 ms
コード長 741 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 207,912 KB
実行使用メモリ 346,448 KB
最終ジャッジ日時 2024-11-20 06:47:37
合計ジャッジ時間 23,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
10,088 KB
testcase_01 AC 128 ms
161,240 KB
testcase_02 AC 24 ms
32,120 KB
testcase_03 AC 9 ms
13,652 KB
testcase_04 AC 15 ms
21,972 KB
testcase_05 AC 6 ms
9,548 KB
testcase_06 AC 17 ms
24,144 KB
testcase_07 AC 24 ms
34,256 KB
testcase_08 AC 25 ms
36,304 KB
testcase_09 AC 52 ms
69,584 KB
testcase_10 AC 119 ms
137,300 KB
testcase_11 AC 101 ms
121,040 KB
testcase_12 AC 273 ms
217,732 KB
testcase_13 AC 119 ms
125,648 KB
testcase_14 AC 529 ms
332,704 KB
testcase_15 AC 24 ms
32,468 KB
testcase_16 AC 219 ms
235,820 KB
testcase_17 AC 96 ms
113,468 KB
testcase_18 AC 71 ms
83,444 KB
testcase_19 AC 233 ms
197,456 KB
testcase_20 AC 519 ms
315,464 KB
testcase_21 AC 244 ms
260,052 KB
testcase_22 AC 137 ms
147,276 KB
testcase_23 AC 79 ms
91,728 KB
testcase_24 AC 469 ms
303,400 KB
testcase_25 AC 255 ms
231,760 KB
testcase_26 AC 70 ms
93,520 KB
testcase_27 AC 326 ms
291,280 KB
testcase_28 AC 176 ms
217,424 KB
testcase_29 AC 268 ms
308,180 KB
testcase_30 AC 287 ms
322,004 KB
testcase_31 AC 283 ms
314,192 KB
testcase_32 AC 305 ms
320,776 KB
testcase_33 AC 258 ms
305,108 KB
testcase_34 AC 378 ms
316,500 KB
testcase_35 AC 303 ms
316,496 KB
testcase_36 AC 361 ms
329,940 KB
testcase_37 AC 240 ms
308,436 KB
testcase_38 AC 405 ms
323,012 KB
testcase_39 AC 346 ms
315,664 KB
testcase_40 AC 352 ms
315,344 KB
testcase_41 AC 572 ms
338,632 KB
testcase_42 AC 484 ms
331,088 KB
testcase_43 AC 523 ms
332,620 KB
testcase_44 AC 596 ms
345,292 KB
testcase_45 AC 597 ms
345,424 KB
testcase_46 AC 555 ms
343,496 KB
testcase_47 AC 602 ms
346,448 KB
testcase_48 AC 586 ms
345,196 KB
testcase_49 AC 588 ms
346,320 KB
testcase_50 AC 598 ms
345,676 KB
testcase_51 AC 597 ms
345,808 KB
testcase_52 AC 592 ms
345,168 KB
testcase_53 AC 615 ms
346,092 KB
testcase_54 AC 585 ms
344,608 KB
testcase_55 AC 599 ms
345,808 KB
testcase_56 AC 564 ms
343,636 KB
testcase_57 AC 579 ms
343,752 KB
testcase_58 AC 581 ms
345,120 KB
testcase_59 AC 524 ms
341,560 KB
testcase_60 AC 606 ms
346,060 KB
testcase_61 AC 5 ms
7,760 KB
testcase_62 AC 5 ms
9,684 KB
testcase_63 AC 601 ms
345,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep_(i, a_, b_, a, b, ...) for (int i = (a), lim##i = (b); i < lim##i; ++i)
#define rep(i, ...) rep_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
using ll = long long;


constexpr int m = 4e5;
int pre[202][m+1];
unordered_map<ll, ll> memo[202];

ll dp(int n, ll k) {
  if (k <= m) return pre[n][k];
  if (n == 0) return 1;
  if (memo[n].count(k)) return memo[n][k];
  return memo[n][k] = dp(n-1, k) + dp(n-1, k/n);
}

int main() {
  ll n, k; cin >> n >> k;
  pre[0][1] = 1;
  rep(i, n) rep(j, m+1) {
    pre[i+1][j] += pre[i][j];
    int k = j * (i+1);
    if (k <= m) pre[i+1][k] += pre[i][j];
  }
  rep(i, 1, n+1) rep(j, m) pre[i][j+1] += pre[i][j];
  cout << (dp(n, k) - 1) << '\n';
}
0