結果

問題 No.1532 Different Products
ユーザー optopt
提出日時 2021-06-04 23:46:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 323 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 206,912 KB
実行使用メモリ 512,640 KB
最終ジャッジ日時 2024-11-20 09:32:05
合計ジャッジ時間 175,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
249,120 KB
testcase_01 AC 709 ms
62,628 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
13,636 KB
testcase_04 AC 2 ms
13,640 KB
testcase_05 AC 2 ms
236,580 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 4 ms
254,244 KB
testcase_08 AC 8 ms
13,636 KB
testcase_09 AC 152 ms
268,544 KB
testcase_10 AC 966 ms
73,888 KB
testcase_11 AC 663 ms
298,880 KB
testcase_12 AC 2,755 ms
165,028 KB
testcase_13 AC 1,240 ms
316,160 KB
testcase_14 TLE -
testcase_15 AC 13 ms
257,572 KB
testcase_16 AC 783 ms
70,692 KB
testcase_17 AC 646 ms
299,904 KB
testcase_18 AC 426 ms
41,892 KB
testcase_19 AC 2,587 ms
401,536 KB
testcase_20 TLE -
testcase_21 AC 1,187 ms
338,816 KB
testcase_22 AC 1,425 ms
98,720 KB
testcase_23 AC 605 ms
296,064 KB
testcase_24 MLE -
testcase_25 AC 2,178 ms
141,988 KB
testcase_26 AC 170 ms
272,512 KB
testcase_27 AC 1,760 ms
124,192 KB
testcase_28 AC 1,346 ms
341,888 KB
testcase_29 AC 1,167 ms
336,640 KB
testcase_30 AC 2,563 ms
160,164 KB
testcase_31 AC 2,590 ms
154,368 KB
testcase_32 AC 2,976 ms
175,616 KB
testcase_33 AC 2,145 ms
139,008 KB
testcase_34 AC 3,826 ms
212,480 KB
testcase_35 AC 2,955 ms
174,336 KB
testcase_36 AC 3,722 ms
208,512 KB
testcase_37 AC 606 ms
61,312 KB
testcase_38 TLE -
testcase_39 AC 3,525 ms
198,016 KB
testcase_40 AC 3,657 ms
202,240 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 2 ms
6,820 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

std::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