Butchering Farmer John's cows always yields the best prime rib. You can tell prime ribs by looking at the digits lovingly stamped across them, one by one, by FJ and the USDA. Farmer John ensures that a purchaser of his prime ribs gets really prime ribs because when sliced from the right, the numbers on the ribs continue to stay prime right down to the last rib, e.g.:

     7  3  3  1

The set of ribs denoted by 7331 is prime; the three ribs 733 are prime; the two ribs 73 are prime, and, of course, the last rib, 7, is prime. The number 7331 is called a superprime of length 4.

Write a program that accepts a number N 1 <=N<=8 of ribs and prints all the superprimes of that length.

The number 1 (by itself) is not a prime number.

PROGRAM NAME: sprime

INPUT FORMAT

A single line with the number N.

SAMPLE INPUT (file sprime.in)

4

OUTPUT FORMAT

The superprime ribs of length N, printed in ascending order one per line.

SAMPLE OUTPUT (file sprime.out)

2333

2339

2393

2399

2939

3119

3137

3733

3739

3793

3797

5939

7193

7331

7333

7393

 

代码:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #define ll long long
 5 using namespace std;
 6 bool p(ll num)
 7 {
 8     if(num==1||num==0) return false;
 9     if(num==2) return true;
10     for(ll i=2;i*i<=num;i++){
11         if(num%i==0) return false;
12     }
13     return true;
14 }
15 void dfs(ll num,ll l)
16 {
17     if(l==0) {cout<<num<<endl;return ;}
18     l--;
19     for(ll i=0;i<=9;i++){
20         if(p(num*10+i))
21             dfs(num*10+i,l);
22     }
23 }
24 int main()
25 {
26     freopen("sprime.in","r",stdin);
27     freopen("sprime.out","w",stdout);
28     ll len;
29     cin>>len;
30     dfs(0,len);
31     return 0;
32 }

 

posted on 2016-01-26 15:45  Sunny糖果  阅读(230)  评论(0编辑  收藏  举报