結果

問題 No.1532 Different Products
ユーザー 👑 emthrmemthrm
提出日時 2021-06-08 12:16:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 645 ms / 4,000 ms
コード長 1,308 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 213,464 KB
実行使用メモリ 10,848 KB
最終ジャッジ日時 2024-05-04 21:42:57
合計ジャッジ時間 23,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 60 ms
5,376 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 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 75 ms
6,060 KB
testcase_11 AC 47 ms
5,408 KB
testcase_12 AC 204 ms
7,512 KB
testcase_13 AC 94 ms
7,216 KB
testcase_14 AC 490 ms
9,360 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 90 ms
5,376 KB
testcase_17 AC 49 ms
5,508 KB
testcase_18 AC 30 ms
5,396 KB
testcase_19 AC 182 ms
7,544 KB
testcase_20 AC 467 ms
9,676 KB
testcase_21 AC 141 ms
5,380 KB
testcase_22 AC 107 ms
6,860 KB
testcase_23 AC 42 ms
6,248 KB
testcase_24 AC 440 ms
9,272 KB
testcase_25 AC 192 ms
7,136 KB
testcase_26 AC 17 ms
5,376 KB
testcase_27 AC 234 ms
6,264 KB
testcase_28 AC 135 ms
6,156 KB
testcase_29 AC 120 ms
5,376 KB
testcase_30 AC 274 ms
7,360 KB
testcase_31 AC 266 ms
7,244 KB
testcase_32 AC 314 ms
7,484 KB
testcase_33 AC 272 ms
7,116 KB
testcase_34 AC 409 ms
9,112 KB
testcase_35 AC 324 ms
7,484 KB
testcase_36 AC 397 ms
7,788 KB
testcase_37 AC 70 ms
5,376 KB
testcase_38 AC 416 ms
9,072 KB
testcase_39 AC 368 ms
7,704 KB
testcase_40 AC 389 ms
7,856 KB
testcase_41 AC 595 ms
9,944 KB
testcase_42 AC 512 ms
9,572 KB
testcase_43 AC 539 ms
9,548 KB
testcase_44 AC 596 ms
10,824 KB
testcase_45 AC 605 ms
10,704 KB
testcase_46 AC 592 ms
10,052 KB
testcase_47 AC 594 ms
10,824 KB
testcase_48 AC 599 ms
10,696 KB
testcase_49 AC 625 ms
10,840 KB
testcase_50 AC 608 ms
10,828 KB
testcase_51 AC 619 ms
10,848 KB
testcase_52 AC 601 ms
10,836 KB
testcase_53 AC 598 ms
10,700 KB
testcase_54 AC 611 ms
10,844 KB
testcase_55 AC 600 ms
10,840 KB
testcase_56 AC 598 ms
9,920 KB
testcase_57 AC 613 ms
9,936 KB
testcase_58 AC 620 ms
10,848 KB
testcase_59 AC 569 ms
9,856 KB
testcase_60 AC 608 ms
10,828 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 645 ms
10,808 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