結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー zaki_chemtechzaki_chemtech
提出日時 2020-07-13 15:53:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 59,392 KB
最終ジャッジ日時 2024-04-25 08:26:44
合計ジャッジ時間 1,598 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,144 KB
testcase_01 AC 41 ms
54,272 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 44 ms
59,136 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 46 ms
59,008 KB
testcase_06 AC 48 ms
58,752 KB
testcase_07 AC 47 ms
59,136 KB
testcase_08 AC 46 ms
58,880 KB
testcase_09 AC 51 ms
59,008 KB
testcase_10 AC 45 ms
59,392 KB
testcase_11 AC 45 ms
59,136 KB
testcase_12 AC 45 ms
59,008 KB
testcase_13 AC 44 ms
59,136 KB
testcase_14 AC 44 ms
59,008 KB
testcase_15 AC 45 ms
58,880 KB
testcase_16 AC 46 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime(p):
    memo = []
    for i in range(2,(int(p**0.5)+1)):
        while p%i==0:
            p //= i
            memo.append(i)
    if p != 1:
        memo.append(p)
    return memo

import collections

n=int(input())

memo = prime(n)

c = collections.Counter(memo)

score_sorted = sorted(c.items(), key=lambda x:-x[0])

ans_a = 1
ans_b = 1

for idx, val in score_sorted:
    if 0 < val//2:
        ans_a *= idx**(val//2)
    if val%2==1:
        ans_b *= idx
print(ans_a, ans_b)
0