結果

問題 No.1666 累乗数
ユーザー Kiri8128Kiri8128
提出日時 2021-09-03 22:55:29
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
TLE  
(最初)
実行時間 -
コード長 637 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 77,800 KB
最終ジャッジ日時 2024-12-15 16:28:18
合計ジャッジ時間 22,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
76,148 KB
testcase_01 AC 479 ms
77,052 KB
testcase_02 AC 461 ms
76,788 KB
testcase_03 AC 463 ms
76,836 KB
testcase_04 AC 459 ms
76,968 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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, 31):
        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]
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