結果
問題 | No.1666 累乗数 |
ユーザー | ygd. |
提出日時 | 2021-09-04 10:36:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,161 bytes |
コンパイル時間 | 693 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 83,324 KB |
最終ジャッジ日時 | 2024-05-09 23:20:37 |
合計ジャッジ時間 | 4,260 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
83,324 KB |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import sys input = sys.stdin.readline import math def main(): T = int(input()) for _ in range(T): k = int(input()) ng = 0 ok = pow(10,18) + 10 while abs(ok - ng) > 1: mid = (ok + ng) // 2 if check(mid) >= k: ok = mid else: ng = mid print(ok) def check(n): #n以下の累乗数の個数 cnt = [0]*60 #i乗と書けるものの個数。 for i in reversed(range(2,60)): #同じ値でもiが大きいほうでカウント。 #小さいほうでカウントする約数でみないといけない。 #大きいほうに寄せると、倍数でみることができる。 ok = 0 ng = math.ceil(pow(10,18) ** (1/i) + 10) while abs(ok - ng) > 1: mid = (ok+ng) // 2 if pow(mid,i) <= n: ok = mid else: ng = mid ok -= 1 #1を除く cnt[i] = ok - sum(cnt[::i]) #iの倍数は全て上でそこでカウントされている。 return sum(cnt) + 1 #除かれた1を足す if __name__ == "__main__": main()