結果

問題 No.1666 累乗数
ユーザー miscalcmiscalc
提出日時 2021-09-03 22:39:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 932 ms / 2,000 ms
コード長 1,874 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 201,556 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-21 23:35:20
合計ジャッジ時間 20,268 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
4,380 KB
testcase_01 AC 852 ms
4,376 KB
testcase_02 AC 855 ms
4,376 KB
testcase_03 AC 855 ms
4,380 KB
testcase_04 AC 851 ms
4,380 KB
testcase_05 AC 930 ms
4,380 KB
testcase_06 AC 932 ms
4,380 KB
testcase_07 AC 928 ms
4,380 KB
testcase_08 AC 926 ms
4,380 KB
testcase_09 AC 877 ms
4,376 KB
testcase_10 AC 878 ms
4,376 KB
testcase_11 AC 874 ms
4,380 KB
testcase_12 AC 879 ms
4,380 KB
testcase_13 AC 918 ms
4,376 KB
testcase_14 AC 923 ms
4,376 KB
testcase_15 AC 921 ms
4,376 KB
testcase_16 AC 924 ms
4,380 KB
testcase_17 AC 892 ms
4,376 KB
testcase_18 AC 900 ms
4,376 KB
testcase_19 AC 892 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
//using mint = modint1000000007;
using ll = long long;
using ld = long double;
using pll = pair<ll, ll>;
using tlll = tuple<ll, ll, ll>;
constexpr ll INF = 1LL << 60;
template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;}
ll safemod(ll A, ll M) {return (A % M + M) % M;}
ll divfloor(ll A, ll B) {if (B < 0) {return divfloor(-A, -B);} return (A - safemod(A, B)) / B;}
ll divceil(ll A, ll B) {if (B < 0) {return divceil(-A, -B);} return divfloor(A + B - 1, B);}
#define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false)

ll isok(ll a, ll b, ll c)
{
  ll tmp = 1;
  for (ll i = 0; i < b; i++)
  {
    if (tmp > c / a)
      return false;
    tmp *= a;
  }
  return true;
}

ll rt(ll b, ll c)
{
  ll ok = 0, ng = 1e9 + 10;
  while (abs(ok - ng) > 1)
  {
    ll mid = (ok + ng) / 2;
    if (isok(mid, b, c))
      ok = mid;
    else
      ng = mid;
  }
  return ok;
}

vector<ll> mb = {0, 1, -1, -1, 0, -1, 1, -1, 0, 0, 1, -1, 0, -1, 1, 1, 0, -1, 0, -1, 0, 1, 1, -1, 0, 0, 1, 0, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, 1, 1, 0, -1, -1, -1, 0, 0, 1, -1, 0, 0, 0, 1, 0, -1, 0, 1, 0, 1, 1, -1, 0, -1, 1, 0, 0, 1, -1, -1, 0, 1, -1, -1, 0, -1, 1, 0, 0, 1, -1};

ll count(ll c)
{
  ll ret = 0;
  for (ll b = 2; b < 64; b++)
  {
    ll tmp = -mb.at(b) * rt(b, c);
    ret += tmp;
  }
  return ret;
}

int main()
{
  cerr << count(10) << endl;

  ll T;
  cin >> T;
  for (ll t = 0; t < T; t++)
  {
    ll K;
    cin >> K;

    ll ok = 0, ng = 1e18 + 10;
    while (abs(ok - ng) > 1)
    {
      ll mid = (ok + ng) / 2;
      if (count(mid) <= K)
        ok = mid;
      else
        ng = mid;
    }
    cout << ok + 1 << '\n';
  }
}
0