結果

問題 No.3236 累乗数大好きbot
ユーザー moon17
提出日時 2025-08-15 22:56:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 96,508 KB
最終ジャッジ日時 2025-08-15 22:56:38
合計ジャッジ時間 9,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7 WA * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

q,*n=map(int,open(0).read().split())
for i in n:
  for j in range(1,40)[::-1]:
    k=int(pow(i,1/j))
    if k**j==i:
      print(j)
      break
0