1152 Google Recruitment (20 分)难度: 简单 / 知识点: 模拟
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1152 Google Recruitment (20 分)难度: 简单 / 知识点: 模拟相关的知识,希望对你有一定的参考价值。
https://pintia.cn/problem-sets/994805342720868352/problems/1071785055080476672
#include<bits/stdc++.h>
using namespace std;
int n,k;
string s;
bool check(string s)
long long int a=stol(s);
if(a<=1) return false; //会卡测试点2
for(long long int i=2;i<=a/i;i++) if(a%i==0) return false;
cout<<s;
return true;
int main(void)
cin>>n>>k;
cin>>s;
for(int i=0;i<=n-k;i++)
string temp=s.substr(i,k);
if(check(temp)) return 0;
cout<<"404";
return 0;
以上是关于1152 Google Recruitment (20 分)难度: 简单 / 知识点: 模拟的主要内容,如果未能解决你的问题,请参考以下文章
PAT Advanced 1152 Google Recruitment (20分)
PAT Advanced 1152 Google Recruitment (20 分)
1152 Google Recruitment (20 分)难度: 简单 / 知识点: 模拟