結果

問題 No.1383 Numbers of Product
ユーザー 👑 emthrmemthrm
提出日時 2021-02-07 22:21:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,221 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 205,784 KB
実行使用メモリ 89,864 KB
最終ジャッジ日時 2023-09-17 22:29:03
合計ジャッジ時間 43,335 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 861 ms
53,624 KB
testcase_08 AC 857 ms
53,080 KB
testcase_09 AC 1,162 ms
82,732 KB
testcase_10 AC 1,545 ms
89,316 KB
testcase_11 AC 1,553 ms
88,264 KB
testcase_12 AC 1,562 ms
88,996 KB
testcase_13 AC 1,486 ms
86,660 KB
testcase_14 AC 1,307 ms
82,876 KB
testcase_15 AC 927 ms
55,700 KB
testcase_16 AC 1,540 ms
88,736 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 2 ms
4,500 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 9 ms
4,708 KB
testcase_29 AC 1,251 ms
82,744 KB
testcase_30 AC 1,559 ms
89,784 KB
testcase_31 AC 1 ms
4,380 KB
testcase_32 AC 250 ms
22,544 KB
testcase_33 AC 2 ms
4,376 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 AC 1,327 ms
84,364 KB
testcase_36 AC 1,408 ms
82,900 KB
testcase_37 AC 1,599 ms
89,812 KB
testcase_38 AC 1,582 ms
89,860 KB
testcase_39 AC 1,449 ms
89,780 KB
testcase_40 AC 1,435 ms
89,828 KB
testcase_41 AC 1,575 ms
89,864 KB
testcase_42 AC 1,575 ms
89,776 KB
testcase_43 AC 1,569 ms
89,812 KB
testcase_44 AC 1,426 ms
89,844 KB
testcase_45 AC 1,572 ms
89,788 KB
testcase_46 AC 1 ms
4,376 KB
testcase_47 AC 1,535 ms
88,988 KB
testcase_48 AC 1,560 ms
89,240 KB
testcase_49 AC 1,571 ms
89,812 KB
testcase_50 WA -
testcase_51 AC 1 ms
4,380 KB
testcase_52 AC 2 ms
4,380 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;

int main() {
  ll n, k, m; cin >> n >> k >> m;
  double log10_n = log10(n);
  unordered_map<ll, int> mp;
  ll a = 1;
  for (; log10(a) + log10(a + k) + log10(a + k * 2) < log10_n + EPS; ++a) {
    ll mul = a * (a + k);
    ++mp[mul];
    int b = 2;
    while (log10(mul) + log10(a + b * k) < log10_n + EPS) {
      mul *= a + b * k;
      if (mul > n) break;
      ++mp[mul];
      ++b;
    }
  }
  ll lb = a - 1, ub = static_cast<ll>(ceil(sqrt(n))) + 1;
  while (ub - lb > 1) {
    ll mid = (lb + ub) >> 1;
    (log10(mid) + log10(mid + k) < log10_n + EPS && mid * (mid + k) <= n ? lb : ub) = mid;
  }
  ll l = a * (a + k), r = lb * (lb + k);
  auto check = [&](ll x) {
    if (lb < a || x < l || r < x) return false;
    if (x == l || x == r) return true;
    ll low = a + 1, high = min(lb, static_cast<ll>(ceil(sqrt(x))) + 1);
    while (high - low > 1) {
      ll mid = (low + high) >> 1;
      (mid * (mid + k) <= x ? low : high) = mid;
    }
    return low * (low + k) == x;
  };
  ll ans = 0;
  if (m == 1) {
    for (auto [x, f] : mp) {
      if (f == 1) ans += check(x) ? -1 : 1;
    }
    ans += max(lb - a + 1, 0LL);
  } else {
    for (auto [x, f] : mp) {
      if (f == m) {
        ans += !check(x);
      } else if (f + 1 == m) {
        ans += check(x);
      }
    }
  }
  cout << ans << '\n';
  return 0;
}
0