結果

問題 No.1532 Different Products
ユーザー optopt
提出日時 2021-06-04 23:17:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 207,080 KB
実行使用メモリ 345,984 KB
最終ジャッジ日時 2024-11-20 07:04:08
合計ジャッジ時間 34,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 233 ms
161,076 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 22 ms
22,400 KB
testcase_07 AC 32 ms
31,488 KB
testcase_08 AC 37 ms
34,560 KB
testcase_09 AC 88 ms
68,076 KB
testcase_10 AC 207 ms
136,436 KB
testcase_11 AC 174 ms
119,808 KB
testcase_12 AC 396 ms
217,728 KB
testcase_13 AC 193 ms
124,668 KB
testcase_14 AC 686 ms
332,672 KB
testcase_15 AC 33 ms
31,688 KB
testcase_16 AC 344 ms
235,776 KB
testcase_17 AC 165 ms
113,536 KB
testcase_18 AC 117 ms
83,200 KB
testcase_19 AC 358 ms
197,248 KB
testcase_20 AC 678 ms
315,264 KB
testcase_21 AC 386 ms
258,560 KB
testcase_22 AC 232 ms
147,068 KB
testcase_23 AC 134 ms
90,216 KB
testcase_24 AC 648 ms
303,288 KB
testcase_25 AC 387 ms
231,228 KB
testcase_26 AC 127 ms
92,732 KB
testcase_27 AC 447 ms
290,952 KB
testcase_28 AC 324 ms
215,836 KB
testcase_29 AC 461 ms
307,840 KB
testcase_30 AC 512 ms
321,280 KB
testcase_31 AC 507 ms
313,984 KB
testcase_32 AC 530 ms
320,768 KB
testcase_33 AC 485 ms
305,024 KB
testcase_34 AC 595 ms
315,520 KB
testcase_35 AC 528 ms
316,288 KB
testcase_36 AC 593 ms
328,804 KB
testcase_37 AC 460 ms
307,328 KB
testcase_38 AC 622 ms
322,944 KB
testcase_39 AC 562 ms
315,892 KB
testcase_40 AC 573 ms
315,136 KB
testcase_41 AC 791 ms
338,576 KB
testcase_42 AC 714 ms
330,768 KB
testcase_43 AC 755 ms
331,768 KB
testcase_44 AC 832 ms
345,088 KB
testcase_45 AC 840 ms
345,220 KB
testcase_46 AC 799 ms
343,504 KB
testcase_47 AC 836 ms
345,856 KB
testcase_48 AC 806 ms
345,064 KB
testcase_49 AC 829 ms
345,600 KB
testcase_50 AC 816 ms
345,088 KB
testcase_51 AC 844 ms
345,728 KB
testcase_52 AC 817 ms
344,576 KB
testcase_53 AC 827 ms
345,984 KB
testcase_54 AC 812 ms
344,448 KB
testcase_55 AC 851 ms
345,600 KB
testcase_56 AC 798 ms
343,296 KB
testcase_57 AC 818 ms
343,936 KB
testcase_58 AC 822 ms
344,960 KB
testcase_59 AC 779 ms
341,504 KB
testcase_60 AC 839 ms
345,984 KB
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 839 ms
345,344 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;
  rep(j, 1, m+1) pre[0][j] = 1;
  rep(i, 1, n) rep(j, m+1) pre[i][j] = pre[i-1][j] + pre[i-1][j/i];
  cout << (dp(n, k) - 1) << '\n';
}
0