luogu#P10618. [ICPC2013 WF] Factors
[ICPC2013 WF] Factors
题目描述
The fundamental theorem of arithmetic states that every integer greater than can be uniquely represented as a product of one or more primes. While unique, several arrangements of the prime factors may be possible. For example:
- ;
- $20=2\times 2\times 5=2\times 5\times 2=5\times 2\times 2$;
Let be the number of different arrangements of the prime factors of . So and .
Given a positive number , there always exists at least one number such that . We want to know the smallest such .
输入格式
The input consists of at most test cases, each on a separate line. Each test case is a positive integer .
输出格式
For each test case, display its number and the smallest number such that . The numbers in the input are chosen such that .
题目大意
【题目描述】
算术基本定理指出,每个大于 的整数都可以唯一表示为一个或多个素数的乘积。虽然表示是唯一的,但素数因子的排列可能有多种。例如:
- ;
- $20=2\times 2\times 5=2\times 5\times 2=5\times 2\times 2$;
令 为 的素数因子不同排列的数量。因此, 且 。
给定一个正整数 ,总是至少存在一个数字 使得 。我们想知道最小的这样的 。
【输入格式】
输入包含最多 个测试用例,每个测试用例占一行。每个测试用例是一个正整数 。
【输出格式】
对于每个测试用例,输出其数字 以及最小的 使得 。输入中的数字选择使得 。
翻译来自于:ChatGPT。
1
2
3
105
1 2
2 6
3 12
105 720