結果

問題 No.1666 累乗数
ユーザー 👑 rin204rin204
提出日時 2023-12-20 22:46:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 668 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 78,160 KB
最終ジャッジ日時 2024-09-27 10:13:00
合計ジャッジ時間 33,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
76,496 KB
testcase_01 AC 1,227 ms
77,476 KB
testcase_02 AC 1,293 ms
77,296 KB
testcase_03 AC 1,284 ms
77,332 KB
testcase_04 AC 1,285 ms
77,064 KB
testcase_05 TLE -
testcase_06 AC 1,857 ms
77,616 KB
testcase_07 AC 1,890 ms
77,684 KB
testcase_08 TLE -
testcase_09 AC 1,445 ms
77,468 KB
testcase_10 AC 1,566 ms
77,312 KB
testcase_11 AC 1,566 ms
77,640 KB
testcase_12 AC 1,490 ms
77,128 KB
testcase_13 TLE -
testcase_14 AC 1,727 ms
77,088 KB
testcase_15 AC 1,681 ms
77,772 KB
testcase_16 AC 1,768 ms
77,856 KB
testcase_17 AC 1,350 ms
77,148 KB
testcase_18 AC 1,939 ms
77,540 KB
testcase_19 AC 1,711 ms
77,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 60

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:
        cnt = 0
        m = (l + r) // 2
        C = [0] * (M + 1)
        for i in range(M, 1, -1):
            c = int(m ** (1 / i))
            while pow(c, i) <= m:
                c += 1
            while pow(c, i) > m:
                c -= 1
            c -= 1
            C[i] = c
            for j in range(i + 1, M + 1):
                if j % i == 0:
                    C[i] -= C[j]
            cnt += C[i]
        if cnt >= k:
            r = m
        else:
            l = m
    print(r)
0