博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 327B-Hungry Sequence(素数筛)
阅读量:5102 次
发布时间:2019-06-13

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

B. Hungry Sequence
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Iahub and Iahubina went to a date at a luxury restaurant. Everything went fine until paying for the food. Instead of money, the waiter wants Iahub to write a Hungry sequence consisting of n integers.

A sequence a1a2, ..., an, consisting of n integers, is Hungry if and only if:

  • Its elements are in increasing order. That is an inequality ai < aj holds for any two indices i, j (i < j).
  • For any two indices i and j (i < j)aj must not be divisible by ai.

Iahub is in trouble, so he asks you for help. Find a Hungry sequence with n elements.

Input

The input contains a single integer: n (1 ≤ n ≤ 105).

Output

Output a line that contains n space-separated integers a1 a2, ..., an (1 ≤ ai ≤ 107), representing a possible Hungry sequence. Note, that each ai must not be greater than 10000000 (107) and less than 1.

If there are multiple solutions you can output any one.

Sample test(s)
input
3
output
2 9 15
input
5
output
11 14 20 27 31
题意:要求生成一个含n个数的数列,对于数列要求:1.升序。2.数列中的随意两个数互质。
这尼玛就是要输出素数嘛。

 
#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;const int INF=0x3f3f3f3f;#define LL long longint prime[10000010],vis[10000010],num;void init(){ memset(vis,1,sizeof(vis)); num=0; for(int i=2;i<10000000;i++) { if(vis[i]) { prime[num++]=i; for(int j=2;j*i<10000000;j++) vis[j*i]=0; } }}int main(){ init(); int n; while(~scanf("%d",&n)) { for(int i=0;i

版权声明:本文博客原创文章。博客,未经同意,不得转载。

转载于:https://www.cnblogs.com/bhlsheji/p/4642809.html

你可能感兴趣的文章
如何获取手机号码?
查看>>
设计模式概述
查看>>
【刘润五分钟商学院】-151幸存者偏见
查看>>
瑜伽扭身祈祷式动作教程
查看>>
vs2008 jquery 智能提示
查看>>
复习URLHttpConnection方式GET,POST方式链接网络解析uri
查看>>
asp.net Dock布局开发设置
查看>>
程序员谨防加班猝死之十大建议(转)
查看>>
memcached全面剖析–5. memcached的应用和兼容程序(转)
查看>>
angularJS学习
查看>>
关于ASBox
查看>>
使用Fastjson解析List对象时出现:{"$ref":"$.data[0].task.OBJECTS[0]"}的问题原因及解决方法...
查看>>
BZOJ 2882 & 后缀数组的傻逼实现
查看>>
java第一天练习
查看>>
SA 的参数
查看>>
MakeDirZ.bat
查看>>
好的网站收藏---长期更新---长期更新---长期更新---长期更新--
查看>>
SQL SUM() 函数
查看>>
Python3 数字(Number)
查看>>
微信小程序 - 传参的几种方式
查看>>