結果

問題 No.1666 累乗数
ユーザー lloyzlloyz
提出日時 2022-01-23 15:15:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 77,516 KB
最終ジャッジ日時 2024-05-07 03:11:00
合計ジャッジ時間 10,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
76,932 KB
testcase_01 AC 533 ms
77,304 KB
testcase_02 AC 534 ms
77,412 KB
testcase_03 AC 540 ms
77,292 KB
testcase_04 AC 536 ms
77,392 KB
testcase_05 AC 472 ms
76,964 KB
testcase_06 AC 467 ms
77,216 KB
testcase_07 AC 461 ms
77,200 KB
testcase_08 AC 458 ms
77,300 KB
testcase_09 AC 521 ms
77,192 KB
testcase_10 AC 515 ms
77,444 KB
testcase_11 AC 520 ms
77,096 KB
testcase_12 AC 517 ms
77,380 KB
testcase_13 AC 488 ms
76,976 KB
testcase_14 AC 478 ms
77,516 KB
testcase_15 AC 484 ms
77,196 KB
testcase_16 AC 479 ms
77,172 KB
testcase_17 AC 505 ms
77,172 KB
testcase_18 AC 498 ms
77,264 KB
testcase_19 AC 509 ms
77,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Limit = [0 for _ in range(60)]
for i in range(2, 60):
    Limit[i] = int((10**18 + 10000)**(1 / i))

def f(n):
    Cnt = [0 for _ in range(60)]
    for i in range(59, 1, -1):
        left = 0
        right = Limit[i] + 1
        while right - left > 1:
            mid = (left + right) // 2
            if mid**i <= n:
                left = mid
            else:
                right = mid
        left -= 1
        Cnt[i] = left - sum(Cnt[::i])
    return sum(Cnt) + 1

t = int(input())
for _ in range(t):
    k = int(input())
    left = 0
    right = 10**18
    while right - left > 1:
        mid = (left + right) // 2
        if f(mid) >= k:
            right = mid
        else:
            left = mid
    print(right)
0