結果

問題 No.1666 累乗数
ユーザー merlinmerlin
提出日時 2021-09-03 23:15:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,573 ms / 2,000 ms
コード長 1,904 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 80,956 KB
実行使用メモリ 39,468 KB
最終ジャッジ日時 2024-05-09 07:01:43
合計ジャッジ時間 28,956 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
38,944 KB
testcase_01 AC 1,022 ms
39,236 KB
testcase_02 AC 1,047 ms
39,108 KB
testcase_03 AC 1,068 ms
39,440 KB
testcase_04 AC 1,072 ms
39,160 KB
testcase_05 AC 1,561 ms
39,408 KB
testcase_06 AC 1,573 ms
39,448 KB
testcase_07 AC 1,566 ms
39,260 KB
testcase_08 AC 1,566 ms
39,252 KB
testcase_09 AC 1,180 ms
39,184 KB
testcase_10 AC 1,223 ms
39,344 KB
testcase_11 AC 1,228 ms
39,468 KB
testcase_12 AC 1,225 ms
39,416 KB
testcase_13 AC 1,491 ms
39,328 KB
testcase_14 AC 1,488 ms
39,316 KB
testcase_15 AC 1,511 ms
39,428 KB
testcase_16 AC 1,496 ms
39,036 KB
testcase_17 AC 1,331 ms
39,304 KB
testcase_18 AC 1,390 ms
39,188 KB
testcase_19 AC 1,290 ms
39,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int t=Integer.parseInt(bu.readLine());
        while(t-->0)
        {
            int n=Integer.parseInt(bu.readLine());
            long l=1,r=(long)1e18,mid,ans=r;
            while(l<=r)
            {
                mid=(l+r)>>1;
                if(count(mid)>=n)
                {
                    ans=mid;
                    r=mid-1;
                }
                else l=mid+1;
            }
            sb.append(ans+"\n");
        }
        System.out.print(sb);
    }

    static long c[]=new long[61];
    static int ex[]={0,0,1000000001,1000001,31623,3982,1001,373,178,101,64,44,32,25,20,16,14,12,11,9,8,8,7,7,6,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2};
    static long count(long n)
    {
        int i,N=60;
        for(i=2;i<=N;i++)
        {
            int l=2,r=ex[i],mid,ans=0; long v;
            while(l<=r)
            {
                mid=(l+r)>>1;
                v=power(mid,i,n);
                if(v<=n)
                {
                    ans=mid-1;
                    l=mid+1;
                }
                else r=mid-1;
            }
            c[i]=ans;
        }

        int j; long ans=1;
        for(i=N;i>1;i--)
        {
            //System.out.print(c[i]+" ");
            for(j=2*i;j<=N;j+=i) c[i]-=c[j];
            ans+=c[i];
        }
        //System.out.println(n+" "+ans);
        return ans;
    }

    static long power(long a,int b,long n)
    {
        if(a>n) return n+1;
        long res=1;
        while(b!=0)
        {
            if(res>n/a) return n+1;
            res=res*a;
            b--;
            if(res>n) return n+1;
        }
        return res;
    }
}
0