結果

問題 No.1666 累乗数
ユーザー umezoumezo
提出日時 2021-09-03 23:20:01
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 704 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 199,276 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-12-15 18:00:48
合計ジャッジ時間 66,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

ll modpow(ll x,ll n){
  ll ans=1;
  while(n){
    if(n&1) ans=ans*x;
    x=x*x;
    n/=2;
  }
  return ans;
}
 

bool f(ll x,ll k){
  ll cnt=0;
  ll i=2;
  while(pow(x,1/i)>=1){
    cnt+=(ll)pow(x,1/i);
    i++;
  }
  if(cnt>=k) return true;
  else return false;
}
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int t;
  cin>>t;
  while(t--){
    ll k;
    cin>>k;
    
    ll ng=0,ok=1e9+1;
    while(ok-ng>1){
      ll mid=(ng+ok)/2;
      if(f(mid,k)) ok=mid;
      else ng=mid;
    }
    cout<<ok<<endl;
  }
  
  return 0;
}
0