zoukankan      html  css  js  c++  java
  • PAT (Advanced Level) Practice 1152 Google Recruitment (20 分)

    In July 2004, Google posted on a giant billboard along Highway 101 in Silicon Valley (shown in the picture below) for recruitment. The content is super-simple, a URL consisting of the first 10-digit prime found in consecutive digits of the natural constant e. The person who could find this prime number could go to the next step in Google's hiring process by visiting this website.

    prime.jpg

    The natural constant e is a well known transcendental number(超越数). The first several digits are: e = 2.718281828459045235360287471352662497757247093699959574966967627724076630353547594571382178525166427427466391932003059921... where the 10 digits in bold are the answer to Google's question.

    Now you are asked to solve a more general problem: find the first K-digit prime in consecutive digits of any given L-digit number.

    Input Specification:

    Each input file contains one test case. Each case first gives in a line two positive integers: L (≤ 1,000) and K (< 10), which are the numbers of digits of the given number and the prime to be found, respectively. Then the L-digit number N is given in the next line.

    Output Specification:

    For each test case, print in a line the first K-digit prime in consecutive digits of N. If such a number does not exist, output 404instead. Note: the leading zeroes must also be counted as part of the K digits. For example, to find the 4-digit prime in 200236, 0023 is a solution. However the first digit 2 must not be treated as a solution 0002 since the leading zeroes are not in the original number.

    Sample Input 1:

    20 5
    23654987725541023819
    

    Sample Output 1:

    49877
    

    Sample Input 2:

    10 3
    2468024680
    

    Sample Output 2:

    404

    那个前导0是真的坑 学到了
     1 #include <iostream>
     2 #include <algorithm>
     3 #include <cstdio>
     4 #include <string.h>
     5 #include <cstring>
     6 using namespace std;
     7 string s;
     8 int _deal(int x)
     9 {
    10     if(x<=1) return 0;
    11     int flag=1;
    12     for(int i=2;i*i<=x;i++){
    13         if(x%i==0){
    14             flag=0;
    15             break;
    16         }
    17     }
    18     return flag;
    19 }
    20 int main()
    21 {
    22     int n,m;
    23     while(cin>>n>>m){
    24         cin>>s;
    25         int flag=0,sum=0,t=1;
    26         for(int i=0;i<=n-m;i++){
    27             sum=0,t=1;
    28             for(int j=i+m-1;j>=i;j--){
    29                 sum+=t*int(s[j]-'0');
    30                 t*=10;
    31             }
    32             if(_deal(sum)){
    33                 flag=1;
    34                 printf("%0*d
    ",m,sum);//坑啊 
    35                 break;
    36             }
    37         }
    38         if(!flag)cout<<"404"<<endl;
    39     }
    40     return 0;
    41 }
  • 相关阅读:
    Delphi单元文件之-防止程序重复执行
    cxGrid使用汇总2
    Delphi数组复制
    cxGrid使用汇总1
    Delphi XE5 android 获取网络状态
    xe5 android sample 中的 SimpleList 是怎样绑定的
    XE5 Android 开发数据访问手机端 解决乱码的办法
    设计模式之代理模式
    设计模式之单例模式及原型模式
    设计模式之工厂模式
  • 原文地址:https://www.cnblogs.com/wydxry/p/11073823.html
Copyright © 2011-2022 走看看