結果

問題 No.1532 Different Products
ユーザー optopt
提出日時 2021-06-05 11:23:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 563 ms / 4,000 ms
コード長 483 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 211,348 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-11-21 07:55:53
合計ジャッジ時間 21,835 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 91 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 28 ms
6,820 KB
testcase_10 AC 118 ms
6,816 KB
testcase_11 AC 90 ms
6,816 KB
testcase_12 AC 272 ms
8,204 KB
testcase_13 AC 143 ms
7,688 KB
testcase_14 AC 429 ms
9,244 KB
testcase_15 AC 5 ms
6,816 KB
testcase_16 AC 106 ms
6,820 KB
testcase_17 AC 90 ms
6,820 KB
testcase_18 AC 60 ms
6,820 KB
testcase_19 AC 269 ms
8,156 KB
testcase_20 AC 447 ms
9,328 KB
testcase_21 AC 150 ms
6,816 KB
testcase_22 AC 170 ms
7,556 KB
testcase_23 AC 81 ms
6,820 KB
testcase_24 AC 407 ms
9,084 KB
testcase_25 AC 234 ms
7,768 KB
testcase_26 AC 30 ms
6,816 KB
testcase_27 AC 205 ms
6,816 KB
testcase_28 AC 156 ms
6,816 KB
testcase_29 AC 151 ms
6,820 KB
testcase_30 AC 271 ms
7,660 KB
testcase_31 AC 273 ms
7,560 KB
testcase_32 AC 312 ms
8,196 KB
testcase_33 AC 245 ms
7,544 KB
testcase_34 AC 379 ms
8,696 KB
testcase_35 AC 306 ms
7,944 KB
testcase_36 AC 369 ms
8,576 KB
testcase_37 AC 93 ms
6,816 KB
testcase_38 AC 392 ms
8,928 KB
testcase_39 AC 348 ms
8,428 KB
testcase_40 AC 358 ms
8,560 KB
testcase_41 AC 518 ms
9,820 KB
testcase_42 AC 453 ms
9,336 KB
testcase_43 AC 478 ms
9,608 KB
testcase_44 AC 529 ms
11,912 KB
testcase_45 AC 529 ms
11,884 KB
testcase_46 AC 513 ms
9,856 KB
testcase_47 AC 534 ms
11,900 KB
testcase_48 AC 563 ms
11,884 KB
testcase_49 AC 536 ms
12,032 KB
testcase_50 AC 535 ms
11,908 KB
testcase_51 AC 536 ms
11,884 KB
testcase_52 AC 518 ms
11,900 KB
testcase_53 AC 545 ms
11,900 KB
testcase_54 AC 527 ms
11,900 KB
testcase_55 AC 535 ms
11,900 KB
testcase_56 AC 511 ms
9,860 KB
testcase_57 AC 516 ms
9,832 KB
testcase_58 AC 528 ms
11,892 KB
testcase_59 AC 493 ms
9,704 KB
testcase_60 AC 532 ms
11,916 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 1 ms
6,816 KB
testcase_63 AC 522 ms
11,892 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;
  for (; n; --n)
    for (auto [x, y] : unordered_map<ll, ll>(dp))
      if (x >= n) dp[x/n] += y;
  ll ans = -1;
  for (auto [x, y] : dp) if (x) ans += y;
  cout << ans << '\n';
}
0