結果

問題 No.1532 Different Products
ユーザー そすうぽよそすうぽよ
提出日時 2024-07-28 15:47:00
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 3,699 ms / 4,000 ms
コード長 890 bytes
コンパイル時間 4,761 ms
コンパイル使用メモリ 282,272 KB
実行使用メモリ 195,532 KB
最終ジャッジ日時 2024-07-28 15:49:13
合計ジャッジ時間 123,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 386 ms
38,444 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 69 ms
12,416 KB
testcase_10 AC 586 ms
45,188 KB
testcase_11 AC 368 ms
34,132 KB
testcase_12 AC 1,663 ms
107,544 KB
testcase_13 AC 700 ms
51,508 KB
testcase_14 AC 2,857 ms
161,508 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 494 ms
43,732 KB
testcase_17 AC 346 ms
33,572 KB
testcase_18 AC 195 ms
23,852 KB
testcase_19 AC 1,651 ms
104,628 KB
testcase_20 AC 3,002 ms
164,448 KB
testcase_21 AC 760 ms
59,604 KB
testcase_22 AC 897 ms
61,928 KB
testcase_23 AC 323 ms
29,864 KB
testcase_24 AC 2,614 ms
153,412 KB
testcase_25 AC 1,415 ms
92,132 KB
testcase_26 AC 77 ms
14,080 KB
testcase_27 AC 1,112 ms
78,132 KB
testcase_28 AC 781 ms
61,552 KB
testcase_29 AC 771 ms
60,464 KB
testcase_30 AC 1,626 ms
104,240 KB
testcase_31 AC 1,702 ms
104,968 KB
testcase_32 AC 1,940 ms
119,600 KB
testcase_33 AC 1,419 ms
93,664 KB
testcase_34 AC 2,559 ms
142,920 KB
testcase_35 AC 1,904 ms
118,668 KB
testcase_36 AC 2,679 ms
140,564 KB
testcase_37 AC 408 ms
42,368 KB
testcase_38 AC 2,504 ms
148,816 KB
testcase_39 AC 2,265 ms
133,860 KB
testcase_40 AC 2,381 ms
136,660 KB
testcase_41 AC 3,456 ms
187,420 KB
testcase_42 AC 2,985 ms
168,468 KB
testcase_43 AC 3,213 ms
175,620 KB
testcase_44 AC 3,619 ms
191,332 KB
testcase_45 AC 3,511 ms
192,508 KB
testcase_46 AC 3,435 ms
184,900 KB
testcase_47 AC 3,613 ms
194,512 KB
testcase_48 AC 3,551 ms
192,300 KB
testcase_49 AC 3,592 ms
192,832 KB
testcase_50 AC 3,499 ms
191,520 KB
testcase_51 AC 3,539 ms
194,264 KB
testcase_52 AC 3,530 ms
188,644 KB
testcase_53 AC 3,699 ms
194,820 KB
testcase_54 AC 3,501 ms
188,764 KB
testcase_55 AC 3,549 ms
192,872 KB
testcase_56 AC 3,309 ms
184,788 KB
testcase_57 AC 3,397 ms
186,428 KB
testcase_58 AC 3,539 ms
190,844 KB
testcase_59 AC 3,223 ms
179,712 KB
testcase_60 AC 3,650 ms
195,532 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 3,633 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