【1152】Google Recruitment (20 分)

举报
野猪佩奇996 发表于 2022/01/24 00:50:42 2022/01/24
【摘要】 #include<iostream>#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string>#include<algorithm> #include<map>#include...

  
  1. #include<iostream>
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #include<math.h>
  5. #include<string>
  6. #include<algorithm>
  7. #include<map>
  8. #include<vector>
  9. #include<queue>
  10. using namespace std;
  11. //在常数e中枚举连续长度为20的素数
  12. //key:stoi字符串转数字 substr()截取字符子串
  13. bool isPrime(int n){ //判断n是否为素数
  14. if(n<=1) return false;
  15. int sqr=(int)sqrt(1.0*n); //sqrt的作用是位一个浮点数开根号
  16. for(int i=2;i<=sqr;i++){ //遍历2到根号n
  17. if(n % i == 0) return false;
  18. }
  19. return true; //n是素数
  20. }
  21. int main(){
  22. int l,k;
  23. string s;
  24. cin >> l >> k >> s; //字符串长度 子串长度 字符串
  25. for(int i=0;i<=l-k;i++){
  26. string t=s.substr(i,k);
  27. int num=stoi(t); //此处用stod也可以
  28. if(isPrime(num)){
  29. cout << t;
  30. return 0;
  31. }
  32. }
  33. cout << "404\n";
  34. system("pause");
  35. return 0;
  36. }

 

文章来源: andyguo.blog.csdn.net,作者:山顶夕景,版权归原作者所有,如需转载,请联系作者。

原文链接:andyguo.blog.csdn.net/article/details/99414508

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。