結果

問題 No.1666 累乗数
ユーザー otoshigootoshigo
提出日時 2021-09-14 08:19:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,960 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 78,456 KB
最終ジャッジ日時 2024-06-26 20:46:19
合計ジャッジ時間 31,749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
77,092 KB
testcase_01 AC 1,303 ms
78,456 KB
testcase_02 AC 1,299 ms
77,688 KB
testcase_03 AC 1,305 ms
77,972 KB
testcase_04 AC 1,318 ms
78,032 KB
testcase_05 AC 1,938 ms
77,976 KB
testcase_06 AC 1,957 ms
77,664 KB
testcase_07 AC 1,952 ms
77,916 KB
testcase_08 AC 1,960 ms
77,540 KB
testcase_09 AC 1,389 ms
78,052 KB
testcase_10 AC 1,396 ms
77,292 KB
testcase_11 AC 1,392 ms
77,344 KB
testcase_12 AC 1,377 ms
77,484 KB
testcase_13 AC 1,793 ms
77,956 KB
testcase_14 AC 1,793 ms
77,832 KB
testcase_15 AC 1,798 ms
77,428 KB
testcase_16 AC 1,818 ms
77,860 KB
testcase_17 AC 1,491 ms
77,464 KB
testcase_18 AC 1,594 ms
77,564 KB
testcase_19 AC 1,449 ms
77,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def cnt_i(x,i):
    y = math.floor(pow(x,1/i))
    for j in range(y+2,y-3,-1):
        if j**i <= x:
            return j-1

def f(x,k):
    ju = 0
    cnt = [0 for _ in range(61)]
    for i in range(60,1,-1):
        c = cnt_i(x,i)
        for j in range(2*i,61,i):
            c -= cnt[j]
        cnt[i] = c
        ju += c
    if ju >= k-1:
        return True
    else:
        return False

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

t = int(input())
for _ in range(t):
    solve()
0