結果

問題 No.1666 累乗数
ユーザー Kiri8128Kiri8128
提出日時 2021-09-03 22:59:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 737 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 154,844 KB
最終ジャッジ日時 2024-12-15 16:43:01
合計ジャッジ時間 41,688 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
81,536 KB
testcase_01 AC 1,022 ms
154,624 KB
testcase_02 AC 1,020 ms
82,176 KB
testcase_03 AC 1,014 ms
154,464 KB
testcase_04 AC 1,021 ms
82,688 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,399 ms
84,168 KB
testcase_10 AC 1,495 ms
82,432 KB
testcase_11 AC 1,498 ms
84,380 KB
testcase_12 AC 1,478 ms
82,944 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,935 ms
77,696 KB
testcase_18 TLE -
testcase_19 AC 1,883 ms
154,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sqrt(n, k = 2):
    if n == 0: return 0
    l = k - 1
    if not n: return 0
    y = 1 << (n.bit_length() + l) // k
    x = y + 1
    while y < x:
        x = y
        y = (l * x + n // (x ** l)) // k
    return x
def cnt(n):
    s = 1
    for b in range(2, 61):
        s += W[b] * (sqrt(n, b) - 1)
    return s
    
W = [0, 0, 1, 1, 0, 1, -1, 1, 0, 0, -1, 1, 0, 1, -1, -1, 0, 1, 0, 1, 0, -1, -1, 1, 0, 0, -1, 0, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, 0, -1, 1, 0, 0, 0, -1, 0, 1, 0, -1, 0, -1, -1, 1, 0]
T = int(input())
for _ in range(T):
    K = int(input())
    l, r = 0, 10 ** 18
    while r - l > 1:
        m = l + r >> 1
        if cnt(m) < K:
            l = m
        else:
            r = m
    print(r)
0