結果

問題 No.1532 Different Products
ユーザー 👑 emthrmemthrm
提出日時 2021-06-08 12:16:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 648 ms / 4,000 ms
コード長 1,308 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 215,272 KB
実行使用メモリ 10,844 KB
最終ジャッジ日時 2024-11-26 12:03:40
合計ジャッジ時間 23,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 63 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 13 ms
5,248 KB
testcase_10 AC 74 ms
6,192 KB
testcase_11 AC 46 ms
5,284 KB
testcase_12 AC 213 ms
7,384 KB
testcase_13 AC 93 ms
7,084 KB
testcase_14 AC 508 ms
9,232 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 95 ms
5,248 KB
testcase_17 AC 52 ms
5,384 KB
testcase_18 AC 34 ms
5,272 KB
testcase_19 AC 189 ms
7,408 KB
testcase_20 AC 492 ms
9,424 KB
testcase_21 AC 152 ms
5,380 KB
testcase_22 AC 111 ms
6,864 KB
testcase_23 AC 46 ms
6,248 KB
testcase_24 AC 457 ms
9,152 KB
testcase_25 AC 200 ms
7,148 KB
testcase_26 AC 18 ms
5,248 KB
testcase_27 AC 251 ms
6,264 KB
testcase_28 AC 146 ms
6,160 KB
testcase_29 AC 130 ms
5,252 KB
testcase_30 AC 287 ms
7,100 KB
testcase_31 AC 295 ms
7,116 KB
testcase_32 AC 337 ms
7,360 KB
testcase_33 AC 278 ms
7,120 KB
testcase_34 AC 416 ms
8,980 KB
testcase_35 AC 329 ms
7,360 KB
testcase_36 AC 400 ms
7,652 KB
testcase_37 AC 75 ms
5,248 KB
testcase_38 AC 441 ms
9,064 KB
testcase_39 AC 377 ms
7,828 KB
testcase_40 AC 397 ms
7,856 KB
testcase_41 AC 622 ms
9,816 KB
testcase_42 AC 535 ms
9,444 KB
testcase_43 AC 561 ms
9,676 KB
testcase_44 AC 625 ms
10,696 KB
testcase_45 AC 613 ms
10,704 KB
testcase_46 AC 619 ms
9,804 KB
testcase_47 AC 616 ms
10,824 KB
testcase_48 AC 613 ms
10,832 KB
testcase_49 AC 631 ms
10,712 KB
testcase_50 AC 608 ms
10,828 KB
testcase_51 AC 642 ms
10,720 KB
testcase_52 AC 616 ms
10,716 KB
testcase_53 AC 611 ms
10,700 KB
testcase_54 AC 616 ms
10,704 KB
testcase_55 AC 608 ms
10,712 KB
testcase_56 AC 606 ms
9,924 KB
testcase_57 AC 618 ms
9,812 KB
testcase_58 AC 648 ms
10,844 KB
testcase_59 AC 592 ms
9,596 KB
testcase_60 AC 639 ms
10,836 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 1 ms
5,248 KB
testcase_63 AC 630 ms
10,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

// https://my.oschina.net/u/4305576/blog/3668964
int main() {
  int n; ll k; cin >> n >> k;
  unordered_map<ll, ll> dp{{k, 1}};
  for (int i = 1; i <= n; ++i) {
    vector<pair<ll, ll>> v;
    for (auto [m, pat] : dp) {
      if (m >= i) v.emplace_back(m / i, pat);
    }
    for (auto [m, pat] : v) dp[m] += pat;
  }
  ll ans = 0;
  for (auto [_, pat] : dp) ans += pat;
  cout << ans - 1 << '\n';
  return 0;
}
0