結果

問題 No.1666 累乗数
ユーザー るさるさ
提出日時 2021-09-03 22:27:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,690 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-05-09 05:04:47
合計ジャッジ時間 24,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
77,124 KB
testcase_01 AC 894 ms
77,372 KB
testcase_02 AC 879 ms
77,184 KB
testcase_03 AC 851 ms
77,912 KB
testcase_04 AC 912 ms
77,276 KB
testcase_05 AC 1,631 ms
77,184 KB
testcase_06 AC 1,651 ms
77,056 KB
testcase_07 AC 1,690 ms
77,312 KB
testcase_08 AC 1,674 ms
78,080 KB
testcase_09 AC 1,003 ms
77,040 KB
testcase_10 AC 1,026 ms
77,568 KB
testcase_11 AC 1,055 ms
77,376 KB
testcase_12 AC 1,057 ms
77,444 KB
testcase_13 AC 1,509 ms
77,568 KB
testcase_14 AC 1,483 ms
77,568 KB
testcase_15 AC 1,443 ms
77,696 KB
testcase_16 AC 1,463 ms
78,080 KB
testcase_17 AC 1,131 ms
77,440 KB
testcase_18 AC 1,234 ms
77,696 KB
testcase_19 AC 1,129 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_table(n):
    n += 1
    table = [i if i%2 else 2 for i in range(n)]
    for i in range(3, n, 2):
        if table[i] == i:
            for j in range(i*i, n, 2*i):
                if table[j] == j:
                    table[j] = i
    return table

def pc(n, table):
    p = set()
    while n != 1:
        pp = table[n]
        if pp in p: return 0
        p.add(pp)
        n //= pp
    return len(p)%2*2 - 1

pt = prime_table(100)

def cnt(n):
    ret = 0
    for i in range(2, 80):
        tp = max(0, int(n ** (1/i))-2)
        while (tp+1) ** i <= n:
            tp += 1
        #print(i, tp-1)
        ret += (tp-1) * pc(i, pt)
    return ret+1


for i in range(int(input())):
    l, r = -1, 10**18
    k = int(input())
    while r-l != 1:
        t = (l+r) // 2
        c = cnt(t)
        if c >= k:
            r = t
        else:
            l = t
    print(r)
0