結果

問題 No.1666 累乗数
ユーザー gr1msl3ygr1msl3y
提出日時 2021-09-03 22:27:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 754 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-05-09 05:02:26
合計ジャッジ時間 6,952 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from functools import lru_cache
T = int(input())

S = []
isprime = [1]*61
for i in range(2, 61):
    if isprime[i]:
        S.append(i)
        for j in range(i*i, 61, i):
            isprime[j] = 0


@lru_cache(maxsize=None)
def count(N, K):
    l = 1
    r = N**2+1
    while r-l > 1:
        m = (l+r)//2
        if pow(m, K) <= N:
            l = m
        else:
            r = m
    return l


@lru_cache(maxsize=None)
def solve(N):
    l = 0
    r = 10**18+1
    while r-l > 1:
        m = (l+r)//2
        ct = 1
        for k in S:
            ct += count(m, k)-1
        if ct < N:
            l = m
        else:
            r = m
    return r


ans = [0]*T
for i in range(T):
    N = int(input())
    ans[i] = solve(N)

print(*ans, sep='\n')
0