結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー raven7959raven7959
提出日時 2021-08-08 09:00:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 59,184 KB
最終ジャッジ日時 2024-09-19 04:53:18
合計ジャッジ時間 1,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,740 KB
testcase_01 AC 32 ms
53,552 KB
testcase_02 AC 31 ms
53,304 KB
testcase_03 AC 35 ms
57,884 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 37 ms
58,140 KB
testcase_06 AC 35 ms
58,424 KB
testcase_07 AC 36 ms
57,364 KB
testcase_08 AC 35 ms
59,184 KB
testcase_09 AC 37 ms
58,272 KB
testcase_10 AC 35 ms
58,040 KB
testcase_11 AC 37 ms
58,320 KB
testcase_12 AC 36 ms
57,516 KB
testcase_13 AC 37 ms
58,552 KB
testcase_14 AC 37 ms
58,804 KB
testcase_15 AC 36 ms
58,016 KB
testcase_16 AC 37 ms
58,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
n=int(input())
N=n
for i in range(2,int(sqrt(N))+1):
    while N%(i*i)==0:
        N//=(i*i)
print(int(sqrt(n//N)),N)
0