結果

問題 No.1666 累乗数
ユーザー gr1msl3ygr1msl3y
提出日時 2021-09-03 22:17:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 662 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-05-09 04:36:39
合計ジャッジ時間 4,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 -- -
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 #

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


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


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)
0