結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー k-ish0212k-ish0212
提出日時 2020-05-29 22:22:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,340 KB
最終ジャッジ日時 2024-04-23 23:14:39
合計ジャッジ時間 8,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 446 ms
43,956 KB
testcase_01 AC 451 ms
44,340 KB
testcase_02 AC 448 ms
43,952 KB
testcase_03 AC 446 ms
44,008 KB
testcase_04 AC 440 ms
44,080 KB
testcase_05 AC 439 ms
43,816 KB
testcase_06 AC 452 ms
43,824 KB
testcase_07 AC 446 ms
43,944 KB
testcase_08 AC 440 ms
44,208 KB
testcase_09 AC 443 ms
44,332 KB
testcase_10 AC 448 ms
44,080 KB
testcase_11 AC 457 ms
44,084 KB
testcase_12 AC 449 ms
44,260 KB
testcase_13 AC 446 ms
43,820 KB
testcase_14 AC 451 ms
43,824 KB
testcase_15 AC 448 ms
43,816 KB
testcase_16 AC 452 ms
43,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
import numpy as np
p = 2
a = 1
b = n
import math

def is_prime(n):
    if n == 1: return False

    for k in range(2, int(math.sqrt(n)) + 1):
        if n % k**2 == 0:
            return False

    return True

# print(is_prime(8))

while b > p:
    if b % p**2 == 0:
        b /= p**2
        a *= p    
    else: p += 1
    if is_prime(b) == True: break
    # print(n,p)



print(int(a),int(b))
0