結果

問題 No.1532 Different Products
ユーザー optopt
提出日時 2021-06-04 23:29:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,667 ms / 4,000 ms
コード長 333 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 206,840 KB
実行使用メモリ 199,708 KB
最終ジャッジ日時 2024-11-20 07:33:31
合計ジャッジ時間 120,772 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 437 ms
39,592 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 79 ms
13,056 KB
testcase_10 AC 590 ms
46,664 KB
testcase_11 AC 414 ms
35,524 KB
testcase_12 AC 1,775 ms
110,168 KB
testcase_13 AC 741 ms
53,648 KB
testcase_14 AC 2,893 ms
164,628 KB
testcase_15 AC 7 ms
5,248 KB
testcase_16 AC 516 ms
44,900 KB
testcase_17 AC 403 ms
34,816 KB
testcase_18 AC 246 ms
25,192 KB
testcase_19 AC 1,731 ms
106,960 KB
testcase_20 AC 2,853 ms
167,584 KB
testcase_21 AC 789 ms
61,104 KB
testcase_22 AC 893 ms
64,004 KB
testcase_23 AC 324 ms
31,444 KB
testcase_24 AC 2,603 ms
156,448 KB
testcase_25 AC 1,571 ms
94,320 KB
testcase_26 AC 97 ms
14,592 KB
testcase_27 AC 1,144 ms
79,872 KB
testcase_28 AC 817 ms
63,156 KB
testcase_29 AC 849 ms
61,632 KB
testcase_30 AC 1,737 ms
106,512 KB
testcase_31 AC 1,705 ms
107,252 KB
testcase_32 AC 1,971 ms
121,952 KB
testcase_33 AC 1,466 ms
95,840 KB
testcase_34 AC 2,462 ms
145,668 KB
testcase_35 AC 2,021 ms
121,016 KB
testcase_36 AC 2,579 ms
143,580 KB
testcase_37 AC 482 ms
43,008 KB
testcase_38 AC 2,669 ms
151,712 KB
testcase_39 AC 2,350 ms
136,684 KB
testcase_40 AC 2,447 ms
139,372 KB
testcase_41 AC 3,491 ms
190,748 KB
testcase_42 AC 3,021 ms
171,616 KB
testcase_43 AC 3,253 ms
178,788 KB
testcase_44 AC 3,586 ms
195,476 KB
testcase_45 AC 3,667 ms
196,528 KB
testcase_46 AC 3,475 ms
188,456 KB
testcase_47 AC 3,627 ms
198,684 KB
testcase_48 AC 3,531 ms
196,336 KB
testcase_49 AC 3,642 ms
196,992 KB
testcase_50 AC 3,619 ms
195,532 KB
testcase_51 AC 3,618 ms
198,528 KB
testcase_52 AC 3,519 ms
192,904 KB
testcase_53 AC 3,573 ms
198,736 KB
testcase_54 AC 3,469 ms
192,896 KB
testcase_55 AC 3,526 ms
196,792 KB
testcase_56 AC 3,350 ms
188,252 KB
testcase_57 AC 3,338 ms
189,720 KB
testcase_58 AC 3,472 ms
194,860 KB
testcase_59 AC 3,336 ms
183,004 KB
testcase_60 AC 3,616 ms
199,708 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 3,536 ms
196,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

std::unordered_map<ll, ll> memo[202];
ll dp(int n, ll k) {
  if (k == 0) return 0;
  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; std::cin >> n >> k;
  std::cout << (dp(n, k) - 1) << '\n';
}
0