結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー GeckoちゃんGeckoちゃん
提出日時 2020-06-07 12:06:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 10,920 KB
実行使用メモリ 7,924 KB
最終ジャッジ日時 2023-08-25 04:30:39
合計ジャッジ時間 1,425 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,924 KB
testcase_01 AC 16 ms
7,816 KB
testcase_02 AC 16 ms
7,852 KB
testcase_03 AC 17 ms
7,716 KB
testcase_04 AC 16 ms
7,920 KB
testcase_05 AC 17 ms
7,860 KB
testcase_06 AC 16 ms
7,744 KB
testcase_07 AC 18 ms
7,916 KB
testcase_08 AC 16 ms
7,744 KB
testcase_09 AC 17 ms
7,896 KB
testcase_10 AC 17 ms
7,824 KB
testcase_11 AC 17 ms
7,904 KB
testcase_12 AC 17 ms
7,896 KB
testcase_13 AC 17 ms
7,756 KB
testcase_14 AC 17 ms
7,784 KB
testcase_15 AC 16 ms
7,924 KB
testcase_16 AC 18 ms
7,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    if temp != 1:
        arr.append([temp, 1])

    if arr == []:
        arr.append([n, 1])

    return arr

n=int(input())
fa = factorization(n)
a0 = 1
a1 = 1
# print(fa)
for p in fa:
    if p[1] == 1:
        a1 *= p[0]
    elif p[1]%2 == 0:
        a0 *= p[0] ** (p[1]//2)
    else:
        a1 *= p[0]
        a0 *= p[0] ** (p[1]//2)

print(a0, a1)
0