結果

問題 No.1666 累乗数
ユーザー siro53siro53
提出日時 2021-09-04 00:10:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,090 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-05-09 08:36:46
合計ジャッジ時間 15,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
76,120 KB
testcase_01 AC 514 ms
76,548 KB
testcase_02 AC 523 ms
76,556 KB
testcase_03 AC 521 ms
77,184 KB
testcase_04 AC 508 ms
76,800 KB
testcase_05 AC 1,076 ms
76,800 KB
testcase_06 AC 1,070 ms
76,704 KB
testcase_07 AC 1,078 ms
77,056 KB
testcase_08 AC 1,090 ms
76,936 KB
testcase_09 AC 595 ms
76,672 KB
testcase_10 AC 595 ms
76,584 KB
testcase_11 AC 599 ms
76,604 KB
testcase_12 AC 577 ms
77,312 KB
testcase_13 AC 937 ms
77,104 KB
testcase_14 AC 953 ms
76,568 KB
testcase_15 AC 947 ms
76,780 KB
testcase_16 AC 933 ms
76,820 KB
testcase_17 AC 704 ms
76,904 KB
testcase_18 AC 783 ms
76,800 KB
testcase_19 AC 666 ms
76,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import sqrt
input = sys.stdin.readline

limit = [0] * 60
for i in range(2, 60):
    C = 10**18
    ok, ng = 0, 10**9 + 10
    while ng - ok > 1:
        mid = (ok + ng) // 2
        if mid**i <= C:
            ok = mid
        else:
            ng = mid
    limit[i] = ok + 2

def f(N):
    cnt = [0] * 60
    for i in range(2, 60)[::-1]:
        ok = 0
        ng = limit[i]
        while ng - ok > 1:
            mid = (ok + ng) // 2
            if mid ** i <= N:
                ok = mid
            else:
                ng = mid
        ok -= 1
        cnt[i] = ok - sum(cnt[::i])
    return sum(cnt) + 1

# print(f(10))

def main():
    K = int(input())
    ok, ng = 10**18, 0 
    while ok - ng > 1:
        mid = (ok + ng) // 2
        if f(mid) >= K:
            ok = mid
        else:
            ng = mid
    print(ok)

if __name__ == '__main__':
    T = int(input())
    for _ in range(T):
        main()
0