結果

問題 No.1666 累乗数
ユーザー ygd.ygd.
提出日時 2021-09-04 10:50:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,368 ms / 2,000 ms
コード長 1,345 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 77,160 KB
最終ジャッジ日時 2024-12-17 18:18:18
合計ジャッジ時間 20,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
76,032 KB
testcase_01 AC 708 ms
76,632 KB
testcase_02 AC 695 ms
76,828 KB
testcase_03 AC 678 ms
76,624 KB
testcase_04 AC 703 ms
76,620 KB
testcase_05 AC 1,366 ms
77,056 KB
testcase_06 AC 1,364 ms
76,652 KB
testcase_07 AC 1,365 ms
76,820 KB
testcase_08 AC 1,368 ms
76,812 KB
testcase_09 AC 805 ms
76,752 KB
testcase_10 AC 813 ms
76,976 KB
testcase_11 AC 802 ms
76,616 KB
testcase_12 AC 810 ms
76,732 KB
testcase_13 AC 1,243 ms
76,764 KB
testcase_14 AC 1,195 ms
77,152 KB
testcase_15 AC 1,223 ms
77,144 KB
testcase_16 AC 1,184 ms
77,160 KB
testcase_17 AC 915 ms
76,748 KB
testcase_18 AC 1,017 ms
76,604 KB
testcase_19 AC 886 ms
76,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import math

L = [0]*60 #これをしないとTLE.
for i in range(2,60):
    L[i] = int(((10**18) ** (1/i)))
    L[i] += 2 #ここで余分を持ちすぎるとPowの計算の時に大きくなりすぎてTLEするっぽい。

def main():
    T = int(input())
    for _ in range(T):
        k = int(input())
        ng = 0
        ok = pow(10,18) + 10
        while abs(ok - ng) > 1:
            mid = (ok + ng) // 2
            if check(mid) >= k:
                ok = mid
            else:
                ng = mid
        print(ok)

def check(n): #n以下の累乗数の個数
    cnt = [0]*60 #i乗と書けるものの個数。
    for i in reversed(range(2,60)):
        #同じ値でもiが大きいほうでカウント。
        #小さいほうでカウントする約数でみないといけない。
        #大きいほうに寄せると、倍数でみることができる。
        ok = 0 
        ng = L[i]
        while abs(ok - ng) > 1:
            mid = (ok+ng) // 2
            if pow(mid,i) <= n:
                ok = mid
            else:
                ng = mid
        ok -= 1 #1を除く
        cnt[i] = ok - sum(cnt[::i]) #iの倍数は全て上でそこでカウントされている。
    return sum(cnt) + 1 #除かれた1を足す


if __name__ == "__main__":
    main()
0