結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー ああいいああいい
提出日時 2022-01-10 23:33:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,445 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 58,748 KB
最終ジャッジ日時 2024-11-14 11:14:48
合計ジャッジ時間 4,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,332 KB
testcase_01 AC 37 ms
52,828 KB
testcase_02 AC 36 ms
53,736 KB
testcase_03 AC 36 ms
52,508 KB
testcase_04 AC 37 ms
53,352 KB
testcase_05 AC 36 ms
52,832 KB
testcase_06 AC 37 ms
53,332 KB
testcase_07 AC 1,332 ms
58,748 KB
testcase_08 AC 52 ms
57,632 KB
testcase_09 AC 1,445 ms
58,588 KB
testcase_10 AC 41 ms
58,144 KB
testcase_11 AC 37 ms
53,176 KB
testcase_12 AC 40 ms
58,648 KB
testcase_13 AC 64 ms
58,620 KB
testcase_14 AC 65 ms
57,640 KB
testcase_15 AC 36 ms
53,752 KB
testcase_16 AC 40 ms
58,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
N = n
d = dict()
i = 2
while i + i <= n:
    if n % i == 0:
        count = 0
        while n % i == 0:
            n //= i
            count += 1
        d[i] = count
    i += 1
if n != 1:
    d[n] = 1
ans = 1
for k in d.keys():
    if d[k] % 2== 1:
        ans *= k
from math import sqrt
print(int(sqrt(N//ans)),ans)
0