主函数 def factorization(p: int): try: int(p) if p < 1: return None elif p == 1: return { '1': 1} else: retDict