博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BestCoder24 1001.Sum Sum Sum(hdu 5150) 解题报告
阅读量:4986 次
发布时间:2019-06-12

本文共 1128 字,大约阅读时间需要 3 分钟。

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5150

题目意思:就是直接求素数。

  不过 n = 1,也属于答案范围!!只能说,一失足成千古恨啊~~~~~

  

1 #include 
2 #include
3 #include
4 #include
5 using namespace std; 6 7 const int maxn = 1000 + 5; 8 int prime[maxn]; 9 10 bool is_prime(int x)11 { 12 // if (x == 1) // 太多手了,不能先入为主啊13 // return false; // 被人 hack 的罪魁祸首14 if (x == 2)15 return true;16 for (int i = 2; i * i <= x; i++)17 {18 if (x % i == 0)19 return false;20 }21 return true;22 }23 24 int main()25 {26 memset(prime, 0, sizeof(prime));27 for (int i = 1; i <= maxn; i++)28 {29 if (is_prime(i))30 prime[i] = 1;31 }32 33 int n, data;34 while(scanf("%d", &n) != EOF)35 {36 int sum = 0;37 for (int i = 0; i < n; i++)38 {39 scanf("%d", &data);40 if (prime[data])41 sum += data;42 }43 printf("%d\n", sum);44 }45 return 0;46 }

 

转载于:https://www.cnblogs.com/windysai/p/4189193.html

你可能感兴趣的文章
嵌入式软件设计第8次试验
查看>>
Datenstruktur und Algorithmus
查看>>
DLL劫持技术详解(lpk.dll)
查看>>
『干货』分享你最喜欢的技巧和提示(Xcode,objective-c,swift,c...等等)
查看>>
WPF教程六:布局之Grid面板(转)
查看>>
ASP.NET MVC5 中百度ueditor富文本编辑器的使用(转)
查看>>
C# 超高速高性能写日志 代码开源(转)
查看>>
no password for ssh
查看>>
mysql游标的应用包括函数
查看>>
RatingBar
查看>>
关于Python编码问题小记
查看>>
js ---整理
查看>>
sql nolock是什么
查看>>
领扣(LeetCode)字符串相加 个人题解
查看>>
关于nginx反向代理504 gateway time-out配置
查看>>
带有构造方法的枚举
查看>>
idea代码出现Usage of API documented as @since 1.8+ less... (Ctrl+F1)
查看>>
Quartz.NET 2.0 学习笔记(2) :和1.0的几点不同
查看>>
ext4 goes faster than ext3(From 51cto)
查看>>
初识WEB移动端开发
查看>>