結果

問題 No.1666 累乗数
ユーザー rlangevinrlangevin
提出日時 2023-09-06 12:32:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 251,476 KB
最終ジャッジ日時 2024-06-24 07:10:18
合計ジャッジ時間 17,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 761 ms
250,944 KB
testcase_01 AC 799 ms
251,476 KB
testcase_02 AC 811 ms
250,732 KB
testcase_03 AC 802 ms
250,888 KB
testcase_04 AC 799 ms
250,820 KB
testcase_05 AC 814 ms
250,744 KB
testcase_06 AC 791 ms
251,052 KB
testcase_07 AC 781 ms
251,144 KB
testcase_08 AC 788 ms
250,728 KB
testcase_09 AC 811 ms
250,848 KB
testcase_10 AC 811 ms
250,804 KB
testcase_11 AC 803 ms
251,476 KB
testcase_12 AC 819 ms
251,276 KB
testcase_13 AC 819 ms
251,028 KB
testcase_14 AC 816 ms
251,240 KB
testcase_15 AC 826 ms
250,940 KB
testcase_16 AC 804 ms
250,868 KB
testcase_17 AC 804 ms
251,204 KB
testcase_18 AC 818 ms
250,792 KB
testcase_19 AC 805 ms
251,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import *

def isqrt(n):
    yes = 1
    no = 10 ** 9 + 5
    while no - yes != 1:
        mid = (yes + no)//2
        if mid * mid <= n:
            yes = mid
        else:
            no = mid
    return yes 

inf = 10 ** 18 + 5
S = set()
for n in range(3, 65):
    now = 2
    while True:
        v = now ** n
        if v >= inf:
            break
        v2 = isqrt(v) ** 2
        if v != v2:
            S.add(now ** n)
        now += 1
S = sorted(list(S))

T = int(input())
for _ in range(T):
    K = int(input())
    yes = inf
    no = 0
    while yes - no != 1:
        mid = (yes + no)//2
        i2 = isqrt(mid)
        ans = -1
        if i2 ** 2 == mid:
            ans = mid
        else:
            ans = (i2 + 1) ** 2
        i3over = bisect_right(S, mid)
        if i2 + i3over >= K:
            yes = mid
        else:
            no = mid
    print(yes)
0