結果

問題 No.1532 Different Products
ユーザー optopt
提出日時 2021-06-05 13:47:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,000 ms / 4,000 ms
コード長 487 bytes
コンパイル時間 3,805 ms
コンパイル使用メモリ 228,032 KB
実行使用メモリ 199,580 KB
最終ジャッジ日時 2024-12-20 11:41:30
合計ジャッジ時間 99,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 367 ms
39,588 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 68 ms
13,056 KB
testcase_10 AC 427 ms
46,664 KB
testcase_11 AC 315 ms
35,524 KB
testcase_12 AC 1,424 ms
110,040 KB
testcase_13 AC 568 ms
53,644 KB
testcase_14 AC 2,335 ms
164,624 KB
testcase_15 AC 7 ms
6,816 KB
testcase_16 AC 383 ms
44,896 KB
testcase_17 AC 315 ms
34,852 KB
testcase_18 AC 178 ms
25,064 KB
testcase_19 AC 1,372 ms
106,956 KB
testcase_20 AC 2,415 ms
167,576 KB
testcase_21 AC 646 ms
61,100 KB
testcase_22 AC 803 ms
63,976 KB
testcase_23 AC 266 ms
31,444 KB
testcase_24 AC 2,194 ms
156,444 KB
testcase_25 AC 1,131 ms
94,320 KB
testcase_26 AC 80 ms
14,592 KB
testcase_27 AC 936 ms
79,868 KB
testcase_28 AC 655 ms
63,032 KB
testcase_29 AC 689 ms
61,632 KB
testcase_30 AC 1,351 ms
106,640 KB
testcase_31 AC 1,383 ms
107,252 KB
testcase_32 AC 1,650 ms
121,952 KB
testcase_33 AC 1,189 ms
95,972 KB
testcase_34 AC 2,039 ms
145,664 KB
testcase_35 AC 1,589 ms
121,016 KB
testcase_36 AC 2,084 ms
143,396 KB
testcase_37 AC 393 ms
43,008 KB
testcase_38 AC 2,115 ms
151,704 KB
testcase_39 AC 1,880 ms
136,684 KB
testcase_40 AC 1,928 ms
139,368 KB
testcase_41 AC 2,728 ms
190,756 KB
testcase_42 AC 2,392 ms
171,612 KB
testcase_43 AC 2,537 ms
178,788 KB
testcase_44 AC 2,907 ms
195,736 KB
testcase_45 AC 2,890 ms
196,528 KB
testcase_46 AC 2,781 ms
188,328 KB
testcase_47 AC 2,955 ms
198,812 KB
testcase_48 AC 2,883 ms
196,340 KB
testcase_49 AC 3,000 ms
197,248 KB
testcase_50 AC 2,904 ms
195,536 KB
testcase_51 AC 2,971 ms
198,528 KB
testcase_52 AC 2,891 ms
193,036 KB
testcase_53 AC 2,969 ms
198,992 KB
testcase_54 AC 2,832 ms
192,924 KB
testcase_55 AC 2,906 ms
196,904 KB
testcase_56 AC 2,762 ms
188,248 KB
testcase_57 AC 2,778 ms
189,724 KB
testcase_58 AC 2,841 ms
194,860 KB
testcase_59 AC 2,644 ms
183,000 KB
testcase_60 AC 2,909 ms
199,580 KB
testcase_61 AC 2 ms
6,824 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 2,838 ms
196,764 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