結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー akitsugu777akitsugu777
提出日時 2020-12-01 14:44:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-13 02:59:27
合計ジャッジ時間 1,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 30 ms
10,752 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 34 ms
10,752 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 32 ms
11,008 KB
testcase_10 AC 34 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 33 ms
10,752 KB
testcase_13 AC 33 ms
10,880 KB
testcase_14 AC 33 ms
10,880 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = []

for i in range(2, int(N**0.5)+1):
    while N % i == 0:
        L += [i]
        N //= i
if N > 1:
    L += [N]

D = {}
for j in L:
    if not j in D:
        D[j] = 1
    else:
        D[j] += 1

x = 1
y = 1
for k, v in D.items():
    if v % 2 == 0:
        x *= k ** (v//2)
    else:
        y *= k

print(x, y)
0