結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー 双六双六
提出日時 2020-08-02 19:15:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,520 KB
最終ジャッジ日時 2024-07-19 05:32:35
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
75,264 KB
testcase_01 AC 93 ms
75,008 KB
testcase_02 AC 100 ms
75,392 KB
testcase_03 AC 93 ms
75,136 KB
testcase_04 AC 97 ms
75,392 KB
testcase_05 AC 89 ms
75,392 KB
testcase_06 AC 91 ms
75,264 KB
testcase_07 AC 92 ms
75,520 KB
testcase_08 AC 90 ms
75,008 KB
testcase_09 AC 88 ms
75,392 KB
testcase_10 AC 90 ms
75,392 KB
testcase_11 AC 90 ms
75,520 KB
testcase_12 AC 91 ms
75,136 KB
testcase_13 AC 93 ms
75,008 KB
testcase_14 AC 92 ms
75,392 KB
testcase_15 AC 91 ms
75,392 KB
testcase_16 AC 93 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#篩
num = 10 ** 6 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

#素因数分解の結果を辞書型として返す
def prime_factorization(N):
	D = defaultdict(int)
	for i in plist:
		while N % i == 0:
			D[i] += 1; N = int(N // i)

	#num以上の素数が含まれているケースの処理
	if N != 1:
		D[N] += 1

	return D

#処理内容
def main():
	N = int(input())
	fac = prime_factorization(N)
	a = 1
	b = 1
	for key, value in fac.items():
		if value % 2 == 1:
			b *= key
		a *= key ** int(value // 2)

	print(a, b)

if __name__ == '__main__':
	main()
0