結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー mesame3993mesame3993
提出日時 2021-11-18 14:55:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 57,728 KB
最終ジャッジ日時 2024-06-07 20:06:43
合計ジャッジ時間 1,930 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 45 ms
56,832 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 46 ms
57,088 KB
testcase_06 AC 50 ms
57,216 KB
testcase_07 AC 46 ms
57,088 KB
testcase_08 AC 45 ms
57,216 KB
testcase_09 AC 45 ms
57,728 KB
testcase_10 AC 46 ms
56,960 KB
testcase_11 AC 45 ms
57,344 KB
testcase_12 AC 46 ms
57,600 KB
testcase_13 AC 46 ms
57,216 KB
testcase_14 AC 45 ms
57,216 KB
testcase_15 AC 46 ms
57,600 KB
testcase_16 AC 47 ms
56,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
  arr, tmp = [], n
  for i in range(2, int(-(-n**0.5//1))+1):
    if tmp % i == 0:
      cnt = 0
      while tmp % i == 0:
        cnt += 1
        tmp //= i
      arr.append([i, cnt])
  if tmp != 1:
    arr.append([tmp, 1])
  if len(arr) == 0:
    arr.append([n, 1])
  return arr

def main():
  from sys import stdin
  readline=stdin.readline
  n = int(readline())
  arr = factorization(n)
  a, b = 1, 1
  for i in arr:
    if i[1] % 2 == 1:
      b *= i[0]
    if i[1]//2 != 0:
      a *= i[0] ** (i[1]//2)
  print(a, b)

main()
0