結果

問題 No.1532 Different Products
ユーザー optopt
提出日時 2021-06-05 13:47:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,724 ms / 4,000 ms
コード長 487 bytes
コンパイル時間 3,086 ms
コンパイル使用メモリ 226,432 KB
実行使用メモリ 199,576 KB
最終ジャッジ日時 2024-05-17 13:23:54
合計ジャッジ時間 88,140 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 290 ms
39,588 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 58 ms
13,056 KB
testcase_10 AC 384 ms
46,792 KB
testcase_11 AC 263 ms
35,528 KB
testcase_12 AC 1,243 ms
110,164 KB
testcase_13 AC 493 ms
53,776 KB
testcase_14 AC 2,082 ms
164,624 KB
testcase_15 AC 6 ms
6,944 KB
testcase_16 AC 369 ms
44,900 KB
testcase_17 AC 247 ms
34,816 KB
testcase_18 AC 154 ms
25,192 KB
testcase_19 AC 1,199 ms
107,092 KB
testcase_20 AC 2,097 ms
167,704 KB
testcase_21 AC 558 ms
61,104 KB
testcase_22 AC 626 ms
63,976 KB
testcase_23 AC 229 ms
31,448 KB
testcase_24 AC 1,901 ms
156,444 KB
testcase_25 AC 991 ms
94,348 KB
testcase_26 AC 69 ms
14,592 KB
testcase_27 AC 793 ms
79,872 KB
testcase_28 AC 560 ms
63,156 KB
testcase_29 AC 595 ms
61,760 KB
testcase_30 AC 1,180 ms
106,640 KB
testcase_31 AC 1,216 ms
107,252 KB
testcase_32 AC 1,413 ms
122,076 KB
testcase_33 AC 1,054 ms
95,844 KB
testcase_34 AC 1,797 ms
145,668 KB
testcase_35 AC 1,385 ms
121,140 KB
testcase_36 AC 1,737 ms
143,576 KB
testcase_37 AC 342 ms
43,008 KB
testcase_38 AC 1,832 ms
151,780 KB
testcase_39 AC 1,628 ms
136,812 KB
testcase_40 AC 1,681 ms
139,368 KB
testcase_41 AC 2,463 ms
190,752 KB
testcase_42 AC 2,594 ms
171,616 KB
testcase_43 AC 2,297 ms
178,788 KB
testcase_44 AC 2,528 ms
195,604 KB
testcase_45 AC 2,523 ms
196,528 KB
testcase_46 AC 2,378 ms
188,328 KB
testcase_47 AC 2,558 ms
198,684 KB
testcase_48 AC 2,513 ms
196,336 KB
testcase_49 AC 2,678 ms
196,992 KB
testcase_50 AC 2,462 ms
195,532 KB
testcase_51 AC 2,724 ms
198,444 KB
testcase_52 AC 2,435 ms
192,904 KB
testcase_53 AC 2,536 ms
198,864 KB
testcase_54 AC 2,524 ms
192,896 KB
testcase_55 AC 2,504 ms
197,032 KB
testcase_56 AC 2,351 ms
188,380 KB
testcase_57 AC 2,405 ms
189,724 KB
testcase_58 AC 2,515 ms
194,860 KB
testcase_59 AC 2,321 ms
183,132 KB
testcase_60 AC 2,561 ms
199,576 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,944 KB
testcase_63 AC 2,581 ms
196,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("popcnt,bmi2,fma,fma4,avx512f,avx512dq,avx512cd,avx512bw,avx512vl")
#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