結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
76,436 KB
testcase_01 AC 1,395 ms
77,380 KB
testcase_02 AC 1,458 ms
77,120 KB
testcase_03 AC 1,458 ms
77,032 KB
testcase_04 AC 1,477 ms
77,136 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,638 ms
77,308 KB
testcase_10 AC 1,747 ms
77,440 KB
testcase_11 AC 1,754 ms
77,392 KB
testcase_12 AC 1,695 ms
77,108 KB
testcase_13 TLE -
testcase_14 AC 1,959 ms
77,092 KB
testcase_15 AC 1,879 ms
77,236 KB
testcase_16 AC 1,957 ms
77,508 KB
testcase_17 AC 1,536 ms
77,180 KB
testcase_18 TLE -
testcase_19 AC 1,941 ms
77,184 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 c**i <= m:
                c += 1
            while 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