题目描述
本题为填空题,只需要算出结果后,在代码中使用输出语句将所填结果输出即可。
素数就是不能再进行等分的数。比如:2 3 5 7 112 3 5 7 11 等。 9=3∗39=3∗3 说明它可以3等分,因而不是素数。
我们国家在 19491949 年建国。如果只给你 1 9 4 91 9 4 9 这 44 个数字卡片,可以随意摆放它们的先后顺序(但卡片不能倒着摆放啊,我们不是在脑筋急转弯!),那么,你能组成多少个 44 位的素数呢?
比如:19491949,49194919 都符合要求。
请你输出能组成的 44 位素数的个数,不要罗列这些素数!!
运行限制
最大运行时间:1s
最大运行内存: 128M
代码如下
#include <iostream>
#include <algorithm>
#include <cmath>
using namespace std;
int f(int n)
{
for(int i=2;i<=sqrt(n);i++)
{
if(n%i==0)
return 0;
}
return 1;
}
int main()
{
// 请在此输入您的代码
int a[4]={1,4,9,9},k=0;
do
{
int n=a[0]*1000+a[1]*100+a[2]*10+a[3];
if(f(n)==1)
k++;
}while(next_permutation(a,a+4));
cout<<k;
return 0;
}