結果

問題 No.1666 累乗数
ユーザー lloyzlloyz
提出日時 2022-01-23 15:15:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 77,396 KB
最終ジャッジ日時 2024-11-29 15:42:15
合計ジャッジ時間 11,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
76,276 KB
testcase_01 AC 566 ms
77,396 KB
testcase_02 AC 565 ms
77,052 KB
testcase_03 AC 557 ms
77,056 KB
testcase_04 AC 565 ms
76,904 KB
testcase_05 AC 488 ms
77,000 KB
testcase_06 AC 489 ms
76,864 KB
testcase_07 AC 484 ms
76,744 KB
testcase_08 AC 480 ms
77,104 KB
testcase_09 AC 540 ms
77,276 KB
testcase_10 AC 542 ms
76,788 KB
testcase_11 AC 541 ms
76,916 KB
testcase_12 AC 545 ms
76,944 KB
testcase_13 AC 517 ms
76,864 KB
testcase_14 AC 507 ms
77,116 KB
testcase_15 AC 504 ms
77,064 KB
testcase_16 AC 516 ms
76,724 KB
testcase_17 AC 536 ms
77,232 KB
testcase_18 AC 517 ms
77,080 KB
testcase_19 AC 527 ms
76,936 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