結果

問題 No.1666 累乗数
ユーザー 👑 rin204rin204
提出日時 2021-09-03 21:58:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 730 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 848,592 KB
最終ジャッジ日時 2024-05-09 03:47:03
合計ジャッジ時間 4,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
66,736 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 MLE -
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())
primes = set(range(2, 60))
for i in [4, 8, 16, 32, 9, 27, 25, 36, 49]:
    primes.remove(i)
primes = sorted(primes)

memo = {}
def mpow(p, y):
    tmp = f"{p}-{y}"
    if tmp in memo:
        return memo[tmp]
    memo[tmp] = pow(p, y)
    return memo[tmp]

def cnt(x):
    ret = 0
    for p in primes:
        y = int(x ** (1 / p))
        y -= 2
        while mpow(p, y) <= x:
            y += 1
        ret += max(0, y - 2)
    return ret
for _ in range(t):
    k = int(input())
    if k == 1:
        print(1)
        continue
    k -= 1
    l = 0
    r = (k + 1) ** 2 
    while r - l > 1:
        mid = (r + l) // 2
        if cnt(mid) >= k:
            r = mid
        else:
            l = mid
    print(r)
0