結果

問題 No.1666 累乗数
ユーザー titiatitia
提出日時 2021-09-04 01:03:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 899 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 314,944 KB
最終ジャッジ日時 2024-12-15 21:33:25
合計ジャッジ時間 18,151 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 789 ms
314,748 KB
testcase_01 AC 821 ms
314,572 KB
testcase_02 AC 842 ms
314,576 KB
testcase_03 AC 854 ms
314,624 KB
testcase_04 AC 899 ms
314,780 KB
testcase_05 AC 825 ms
314,944 KB
testcase_06 AC 810 ms
314,768 KB
testcase_07 AC 813 ms
314,836 KB
testcase_08 AC 812 ms
314,728 KB
testcase_09 AC 787 ms
314,484 KB
testcase_10 AC 814 ms
314,464 KB
testcase_11 AC 817 ms
314,728 KB
testcase_12 AC 798 ms
314,644 KB
testcase_13 AC 797 ms
314,616 KB
testcase_14 AC 781 ms
314,592 KB
testcase_15 AC 807 ms
314,756 KB
testcase_16 AC 838 ms
314,660 KB
testcase_17 AC 813 ms
314,532 KB
testcase_18 AC 793 ms
314,644 KB
testcase_19 AC 792 ms
314,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import bisect

S=[]

for p in range(3,65):
    for i in range(1,10**6+5):
        S.append(i**p)
        if i**p>10**18:
            break

S=sorted(set(S))

T=[]
for s in S:
    r=int(s**(1/2))

    if r**2==s or (r+1)**2==s or (r-1)**2==s:
        continue
    T.append(s)

def calc(x):
    if x==1:
        return 1
    
    y=int(x**(1/2))
    while y*y>x:
        y-=1

    k=bisect.bisect(T,x)

    return y+k

t=int(input())
for tests in range(t):
    n=int(input())

    OK=10**18
    NG=0

    while OK>NG+1:
        mid=(OK+NG)//2
        #print(mid,calc(mid))

        if calc(mid)>=n:
            OK=mid
        else:
            NG=mid

    print(OK)
0