結果

問題 No.1666 累乗数
ユーザー 👑 rin204rin204
提出日時 2023-12-20 22:50:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 929 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 81,708 KB
最終ジャッジ日時 2024-09-27 10:13:51
合計ジャッジ時間 11,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
68,624 KB
testcase_01 AC 137 ms
76,896 KB
testcase_02 AC 147 ms
77,284 KB
testcase_03 AC 159 ms
77,044 KB
testcase_04 AC 159 ms
77,288 KB
testcase_05 AC 707 ms
79,708 KB
testcase_06 AC 720 ms
79,916 KB
testcase_07 AC 707 ms
80,068 KB
testcase_08 AC 737 ms
79,924 KB
testcase_09 AC 311 ms
78,668 KB
testcase_10 AC 372 ms
78,868 KB
testcase_11 AC 386 ms
79,764 KB
testcase_12 AC 379 ms
78,992 KB
testcase_13 AC 921 ms
81,652 KB
testcase_14 AC 928 ms
81,580 KB
testcase_15 AC 929 ms
81,608 KB
testcase_16 AC 923 ms
81,708 KB
testcase_17 AC 508 ms
80,124 KB
testcase_18 AC 684 ms
80,780 KB
testcase_19 AC 563 ms
79,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 60

memo = {}


def f(m):
    if m in memo:
        return memo[m]
    cnt = 0
    C = [0] * (M + 1)
    for i in range(M, 1, -1):
        c = int(m ** (1 / i))
        if c**i <= m:
            c += 1
        if c**i > m:
            c -= 1
        c -= 1
        C[i] = c
        for j in range(2 * i, M + 1, i):
            if j % i == 0:
                C[i] -= C[j]
        cnt += C[i]
    memo[m] = cnt
    return cnt


for _ in range(int(input())):
    k = int(input())
    if k == 1:
        print(1)
        continue

    k -= 1
    l = 1
    r = 10**18
    while r - l > 1:
        m = (l + r) // 2
        if f(m) >= k:
            r = m
        else:
            l = m
    print(r)
0