結果

問題 No.1532 Different Products
ユーザー そすうぽよそすうぽよ
提出日時 2021-06-05 13:03:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,275 ms / 4,000 ms
コード長 890 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 210,116 KB
実行使用メモリ 195,388 KB
最終ジャッジ日時 2024-09-27 05:27:01
合計ジャッジ時間 98,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 345 ms
38,316 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 60 ms
12,416 KB
testcase_10 AC 427 ms
45,192 KB
testcase_11 AC 301 ms
34,260 KB
testcase_12 AC 1,354 ms
107,680 KB
testcase_13 AC 546 ms
51,512 KB
testcase_14 AC 2,401 ms
161,516 KB
testcase_15 AC 6 ms
6,944 KB
testcase_16 AC 376 ms
43,736 KB
testcase_17 AC 282 ms
33,572 KB
testcase_18 AC 159 ms
23,856 KB
testcase_19 AC 1,322 ms
104,496 KB
testcase_20 AC 2,444 ms
164,584 KB
testcase_21 AC 579 ms
59,732 KB
testcase_22 AC 691 ms
61,924 KB
testcase_23 AC 253 ms
29,872 KB
testcase_24 AC 2,239 ms
153,564 KB
testcase_25 AC 1,174 ms
92,132 KB
testcase_26 AC 69 ms
14,080 KB
testcase_27 AC 852 ms
78,220 KB
testcase_28 AC 635 ms
61,668 KB
testcase_29 AC 602 ms
60,464 KB
testcase_30 AC 1,378 ms
104,372 KB
testcase_31 AC 1,376 ms
104,968 KB
testcase_32 AC 1,548 ms
119,596 KB
testcase_33 AC 1,098 ms
93,796 KB
testcase_34 AC 1,986 ms
142,928 KB
testcase_35 AC 1,512 ms
118,676 KB
testcase_36 AC 1,903 ms
140,688 KB
testcase_37 AC 377 ms
42,240 KB
testcase_38 AC 2,095 ms
148,852 KB
testcase_39 AC 1,763 ms
133,988 KB
testcase_40 AC 1,909 ms
136,664 KB
testcase_41 AC 2,817 ms
187,296 KB
testcase_42 AC 2,493 ms
168,468 KB
testcase_43 AC 2,521 ms
175,620 KB
testcase_44 AC 2,871 ms
191,564 KB
testcase_45 AC 2,893 ms
192,508 KB
testcase_46 AC 2,873 ms
185,028 KB
testcase_47 AC 2,922 ms
194,636 KB
testcase_48 AC 2,876 ms
192,196 KB
testcase_49 AC 2,947 ms
192,960 KB
testcase_50 AC 2,857 ms
191,268 KB
testcase_51 AC 2,956 ms
194,368 KB
testcase_52 AC 2,881 ms
188,648 KB
testcase_53 AC 3,275 ms
194,568 KB
testcase_54 AC 2,911 ms
188,896 KB
testcase_55 AC 2,808 ms
192,748 KB
testcase_56 AC 2,789 ms
184,792 KB
testcase_57 AC 2,857 ms
186,432 KB
testcase_58 AC 2,874 ms
190,720 KB
testcase_59 AC 2,639 ms
179,840 KB
testcase_60 AC 2,965 ms
195,388 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,944 KB
testcase_63 AC 2,918 ms
192,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <variant>

#define rep2(i,k,n) for(i64 i=(i64)(k);i<(i64)(n);i++)
#define rep(i,n) rep2(i,0,n)
#define all(x) begin(x),end(x)
#ifdef ENV_LOCAL
#define dump if (1) cerr
#else
#define dump if (0) cerr
#endif

using namespace std;
using namespace std::string_literals;

using i32 = int32_t;
using i64 = int64_t;
using f64 = double;
using f80 = long double;
using vi32 = vector<i32>;
using vi64 = vector<i64>;

//using namespace harudake;

vector<unordered_map<i64,i64>> memo;

i64 solve(i64 n, i64 k) {
  if (memo[n].count(k)) {
    return memo[n].at(k);
  }
  if (k == 0) {
    return 0;
  }
  if (n == 1) {
    return 2;
  }
  i64 ans = solve(n-1, k) + solve(n-1, k/n);
  memo[n][k] = ans;
  return ans;
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  i64 n,k;
  cin>>n>>k;
  memo.resize(n+1);
  cout<<solve(n,k)-1<<endl;
  return 0;
}
0