結果

問題 No.1532 Different Products
ユーザー optopt
提出日時 2021-06-05 11:14:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,281 ms / 4,000 ms
コード長 496 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 211,292 KB
実行使用メモリ 12,012 KB
最終ジャッジ日時 2024-11-21 07:45:48
合計ジャッジ時間 44,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 151 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 28 ms
6,816 KB
testcase_10 AC 154 ms
6,816 KB
testcase_11 AC 112 ms
6,816 KB
testcase_12 AC 460 ms
8,076 KB
testcase_13 AC 194 ms
7,556 KB
testcase_14 AC 1,033 ms
9,156 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 239 ms
6,816 KB
testcase_17 AC 120 ms
6,816 KB
testcase_18 AC 68 ms
6,816 KB
testcase_19 AC 417 ms
8,056 KB
testcase_20 AC 984 ms
9,300 KB
testcase_21 AC 344 ms
6,816 KB
testcase_22 AC 236 ms
7,580 KB
testcase_23 AC 90 ms
6,820 KB
testcase_24 AC 917 ms
9,088 KB
testcase_25 AC 447 ms
7,792 KB
testcase_26 AC 38 ms
6,820 KB
testcase_27 AC 507 ms
6,816 KB
testcase_28 AC 315 ms
6,816 KB
testcase_29 AC 332 ms
6,820 KB
testcase_30 AC 667 ms
7,528 KB
testcase_31 AC 666 ms
7,676 KB
testcase_32 AC 746 ms
8,044 KB
testcase_33 AC 602 ms
7,688 KB
testcase_34 AC 887 ms
8,704 KB
testcase_35 AC 742 ms
7,952 KB
testcase_36 AC 901 ms
8,784 KB
testcase_37 AC 177 ms
6,820 KB
testcase_38 AC 920 ms
8,872 KB
testcase_39 AC 825 ms
8,440 KB
testcase_40 AC 857 ms
8,692 KB
testcase_41 AC 1,214 ms
9,824 KB
testcase_42 AC 1,078 ms
9,332 KB
testcase_43 AC 1,112 ms
9,620 KB
testcase_44 AC 1,247 ms
11,884 KB
testcase_45 AC 1,225 ms
11,888 KB
testcase_46 AC 1,222 ms
9,844 KB
testcase_47 AC 1,269 ms
11,872 KB
testcase_48 AC 1,247 ms
12,012 KB
testcase_49 AC 1,254 ms
11,908 KB
testcase_50 AC 1,277 ms
12,004 KB
testcase_51 AC 1,281 ms
11,928 KB
testcase_52 AC 1,240 ms
12,012 KB
testcase_53 AC 1,252 ms
11,876 KB
testcase_54 AC 1,236 ms
11,884 KB
testcase_55 AC 1,241 ms
11,904 KB
testcase_56 AC 1,217 ms
9,972 KB
testcase_57 AC 1,219 ms
10,028 KB
testcase_58 AC 1,247 ms
11,896 KB
testcase_59 AC 1,169 ms
9,736 KB
testcase_60 AC 1,259 ms
11,892 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 1,265 ms
11,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep_(i, a_, b_, a, b, ...) for (int i = (a), lim##i = (b); i < lim##i; ++i)
#define rep(i, ...) rep_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
using ll = long long;

int main() {
  ll n, k; cin >> n >> k;
  unordered_map<ll, ll> dp;
  dp[k] = 1;
  rep(i, 1, n+1) {
    unordered_map<ll, ll> tmp(dp);
    for (auto [x, y] : tmp) if (x >= i) dp[x/i] += y;
  }
  ll ans = -1;
  for (auto [x, y] : dp) if (x) ans += y;
  cout << ans << '\n';
}
0