結果

問題 No.1666 累乗数
ユーザー titiatitia
提出日時 2021-09-04 01:03:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 802 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 314,988 KB
最終ジャッジ日時 2024-05-09 09:43:36
合計ジャッジ時間 16,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 734 ms
314,684 KB
testcase_01 AC 799 ms
314,540 KB
testcase_02 AC 755 ms
314,640 KB
testcase_03 AC 765 ms
314,632 KB
testcase_04 AC 757 ms
314,720 KB
testcase_05 AC 758 ms
314,832 KB
testcase_06 AC 755 ms
314,988 KB
testcase_07 AC 754 ms
314,524 KB
testcase_08 AC 743 ms
314,504 KB
testcase_09 AC 758 ms
314,548 KB
testcase_10 AC 758 ms
314,528 KB
testcase_11 AC 772 ms
314,856 KB
testcase_12 AC 772 ms
314,768 KB
testcase_13 AC 802 ms
314,764 KB
testcase_14 AC 762 ms
314,576 KB
testcase_15 AC 787 ms
314,556 KB
testcase_16 AC 773 ms
314,868 KB
testcase_17 AC 739 ms
314,604 KB
testcase_18 AC 752 ms
314,664 KB
testcase_19 AC 753 ms
314,484 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