結果

問題 No.3236 累乗数大好きbot
ユーザー sasa8uyauya
提出日時 2025-08-16 01:16:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 330 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 139,808 KB
最終ジャッジ日時 2025-08-16 01:16:12
合計ジャッジ時間 9,419 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 5 TLE * 1 -- * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache

@cache
def p(x,y):
  return x**y

T=int(input())
for _ in range(T):
  n=int(input())
  for k in reversed(range(2,40)):
    ok=0
    ng=10**6
    while ng-ok>1:
      m=(ok+ng)//2
      if p(m,k)<=n:
        ok=m
      else:
        ng=m
    if ok**k==n:
      print(k)
      break
  else:
    print(1)
0