結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
76,528 KB
testcase_01 AC 707 ms
76,672 KB
testcase_02 AC 691 ms
76,544 KB
testcase_03 AC 672 ms
76,544 KB
testcase_04 AC 676 ms
76,608 KB
testcase_05 AC 1,348 ms
76,800 KB
testcase_06 AC 1,343 ms
76,996 KB
testcase_07 AC 1,350 ms
76,856 KB
testcase_08 AC 1,350 ms
76,800 KB
testcase_09 AC 783 ms
76,800 KB
testcase_10 AC 774 ms
76,680 KB
testcase_11 AC 799 ms
76,800 KB
testcase_12 AC 801 ms
76,772 KB
testcase_13 AC 1,218 ms
76,948 KB
testcase_14 AC 1,167 ms
76,800 KB
testcase_15 AC 1,234 ms
77,056 KB
testcase_16 AC 1,176 ms
76,832 KB
testcase_17 AC 907 ms
76,672 KB
testcase_18 AC 1,018 ms
77,184 KB
testcase_19 AC 893 ms
76,672 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