博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cf B. Hungry Sequence
阅读量:5051 次
发布时间:2019-06-12

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

http://codeforces.com/contest/327/problem/B

这道题素数打表就行。

1 #include 
2 #include
3 #include
4 #include
5 #define maxn 2000100 6 using namespace std; 7 8 bool f[maxn]; 9 int a[maxn];10 int t;11 12 void prime()13 {14 memset(f,false,sizeof(f));15 f[0]=true; f[1]=true;;16 for(int i=2; i*i
View Code

 

转载于:https://www.cnblogs.com/fanminghui/p/3671131.html

你可能感兴趣的文章
学习python:day1
查看>>
css3动画属性
查看>>
第九次团队作业-测试报告与用户使用手册
查看>>
Equal Sides Of An Array
查看>>
CentOS笔记-用户和用户组管理
查看>>
Mongodb 基本命令
查看>>
Qt中QTableView中加入Check列实现
查看>>
“富豪相亲大会”究竟迷失了什么?
查看>>
控制文件的备份与恢复
查看>>
返回代码hdu 2054 A==B?
查看>>
Flink独立集群1
查看>>
iOS 8 地图
查看>>
20165235 第八周课下补做
查看>>
[leetcode] 1. Two Sum
查看>>
iOS 日常工作之常用宏定义大全
查看>>
PHP的SQL注入技术实现以及预防措施
查看>>
MVC Razor
查看>>
软件目录结构规范
查看>>
Windbg调试Sql Server 进程
查看>>
linux调度器系列
查看>>