結果

問題 No.1666 累乗数
ユーザー siro53siro53
提出日時 2021-09-04 00:05:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 77,564 KB
最終ジャッジ日時 2024-05-09 08:29:06
合計ジャッジ時間 11,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
76,476 KB
testcase_01 AC 580 ms
76,724 KB
testcase_02 AC 580 ms
76,800 KB
testcase_03 AC 573 ms
76,800 KB
testcase_04 AC 580 ms
77,056 KB
testcase_05 AC 541 ms
76,928 KB
testcase_06 AC 544 ms
76,800 KB
testcase_07 AC 537 ms
76,800 KB
testcase_08 AC 561 ms
77,084 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def f(N):
    cnt = [0] * 60
    for i in range(59, 1, -1):
        ok = 0
        ng = int((10**18 + 100000)**(1/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