結果

問題 No.1666 累乗数
ユーザー re_re0101re_re0101
提出日時 2021-09-02 06:11:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 1,805 ms
コンパイル使用メモリ 178,700 KB
実行使用メモリ 113,536 KB
最終ジャッジ日時 2024-05-09 00:57:03
合計ジャッジ時間 17,853 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 645 ms
113,408 KB
testcase_01 AC 691 ms
113,408 KB
testcase_02 AC 721 ms
113,408 KB
testcase_03 AC 735 ms
113,536 KB
testcase_04 AC 662 ms
113,536 KB
testcase_05 AC 670 ms
113,536 KB
testcase_06 AC 669 ms
113,408 KB
testcase_07 AC 668 ms
113,408 KB
testcase_08 AC 667 ms
113,408 KB
testcase_09 AC 672 ms
113,536 KB
testcase_10 AC 687 ms
113,536 KB
testcase_11 AC 668 ms
113,408 KB
testcase_12 AC 672 ms
113,536 KB
testcase_13 AC 675 ms
113,408 KB
testcase_14 AC 698 ms
113,408 KB
testcase_15 AC 675 ms
113,536 KB
testcase_16 AC 669 ms
113,408 KB
testcase_17 AC 671 ms
113,536 KB
testcase_18 AC 675 ms
113,408 KB
testcase_19 AC 673 ms
113,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ll exp(ll n,ll r){if(r==0)return 1;return n*exp(n,r-1);}


int main(){
    set<ll>st;
    set<ll>unuse;
    for(ll i=1;i<=1000;i++)unuse.insert(i*i);
    for(ll i=2;i<=((ll)1e6)+10;i++){
        if(unuse.count(i))continue;
        for(ll j=3;;j+=2){
            if(pow(i,j)<=((ll)1e18)+10)st.insert(exp(i,j));
            else break;
        }
    }
    map<ll,ll>mp;
    ll cur=0;
    for(auto x:st){
        mp[x]=++cur;
    }
    ll ma=*rbegin(st);

    auto cnt=[&](ll n)->ll{
        ll ok=0;
        ll ng=((ll)1e9)+10;
        while(ng-ok>1){
            ll mid=(ok+ng)/2;
            if(mid*mid<=n)ok=mid;
            else ng=mid;
        }
        if(n>=ma)return st.size()+ok;
        else return mp[(*st.lower_bound(n+1))]-1+ok;
    };

    ll t;cin>>t;
    while(t--){
        ll m;cin>>m;
        ll ok=1e18,ng=-1;
        while(ok-ng>1){
            ll mid=(ok+ng)/2;
            if(cnt(mid)>=m)ok=mid;
            else ng=mid;
    }
        cout<<ok<<endl;
    }
}
0