Algorithm 11653 Feb 16, 2022 Youngsung Choi Feb 16, 2022 Youngsung Choi # ์์ธ์๋ถํด # ์๊ฐ ์ ํ ๋ฉ๋ชจ๋ฆฌ ์ ํ ์ ์ถ ์ ๋ต ๋งํ ์ฌ๋ ์ ๋ต ๋น์จ # 1 ์ด 256 MB 49519 26551 20741 52.382% # ๋ฌธ์ # ์ ์ N์ด ์ฃผ์ด์ก์ ๋, ์์ธ์๋ถํดํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํ์์ค. 1: root = int(N ** 0.5) + 1 if N % 2 == 0: N //= 2 print(2) else: j = 3 while N % j != 0 and j <= root: j+=2 if j >= root: result.append(N) N = 1 else: N //= j result.append(j) for i in sorted(result): print(i)