結果

問題 No.1666 累乗数
ユーザー googol_S0googol_S0
提出日時 2021-09-03 21:49:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 86,396 KB
最終ジャッジ日時 2024-12-15 12:17:02
合計ジャッジ時間 4,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
82,656 KB
testcase_01 AC 127 ms
85,828 KB
testcase_02 AC 135 ms
86,060 KB
testcase_03 AC 133 ms
86,136 KB
testcase_04 AC 137 ms
86,024 KB
testcase_05 AC 120 ms
86,316 KB
testcase_06 AC 132 ms
86,016 KB
testcase_07 AC 127 ms
86,132 KB
testcase_08 AC 127 ms
86,316 KB
testcase_09 AC 152 ms
86,080 KB
testcase_10 AC 148 ms
86,064 KB
testcase_11 AC 149 ms
86,068 KB
testcase_12 AC 152 ms
86,148 KB
testcase_13 AC 153 ms
86,396 KB
testcase_14 AC 151 ms
85,876 KB
testcase_15 AC 154 ms
85,780 KB
testcase_16 AC 150 ms
86,056 KB
testcase_17 AC 146 ms
85,832 KB
testcase_18 AC 155 ms
86,080 KB
testcase_19 AC 143 ms
86,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y,Z=set(),set(),set()
INF=10**18
for i in range(4,62):
  j=1
  while (j**i)<=INF:
    X.add(j**i)
    if i%2==0:
      Y.add(j**i)
    if i%3==0:
      Z.add(j**i)
    j+=1
X=sorted(X)
Y=sorted(Y)
Z=sorted(Z)
from bisect import *
for t in range(int(input())):
  K=int(input())
  L,R=0,INF
  while L<R:
    M=(L+R+1)>>1
    A=bisect_right(X,M)
    x=int(M**0.5)
    for i in range(x-2,x+2):
      if i>=0 and (i+1)*(i+1)>M:
        x=i
        break
    A+=x
    A-=bisect_right(Y,M)
    x=int(M**(1/3))
    for i in range(x-2,x+2):
      if i>=0 and (i+1)*(i+1)*(i+1)>M:
        x=i
        break
    A+=x
    A-=bisect_right(Z,M)
    if A<K:
      L=M
    else:
      R=min(R-1,M)
  print(L+1)
0