結果

問題 No.1666 累乗数
ユーザー nakaken88nakaken88
提出日時 2021-09-03 22:18:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,116 bytes
コンパイル時間 1,682 ms
コンパイル使用メモリ 169,688 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 04:39:00
合計ジャッジ時間 3,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#ifdef LOCAL
#include "debug.hpp"
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#else
#define debug(...)
#endif

ll K;
vector<ll> primes;

void calc_init() {
  vector<ll> check(100, 1);
  for (ll i = 2; i < 100; i++) {
    if (check[i]) {
      primes.push_back(i);
      for (ll j = 2; i * j < 100; j++) {
        check[i * j] = 0;
      }
    }
  }
}

bool isOK(ll key) {
  ll max = sqrt(key);
  ll cnt = 1;
  for (ll p: primes) {
    double temp = pow(key, 1.0 / ((double) p));
    ll temp2 = (ll) temp;
    if (pow(temp2 + 1, p) <= key) temp2++;
    if (temp2 <= 1) break;
    cnt += (temp2 - 1);
  }
  return (cnt >= K);
}


int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);

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

    // N以下の累乗数はK個以下?
    ll ok = 2e18, ng = 0;
    while (abs(ok - ng) > 1) {
      ll mid = (ok + ng) / 2;
      if (isOK(mid)) ok = mid;
      else ng = mid;
    }
    cout << ok << '\n';
  }
  return 0;
}
0