301729: CF327B. Hungry Sequence

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Hungry Sequence

题意翻译

要求构造一个长度为 $n$ 的序列 $a$,满足: - $2\le a_i\le 10^7$ - 对于所有的 $j<i$,均有 $a_j<a_i$; - 序列中不存在一对 $i,j$,满足 $i\ne j$ 并且 $a_i|a_j$ Translated by Rosmarinus.

题目描述

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 $ a_{1} $ , $ a_{2} $ , ..., $ a_{n} $ , consisting of $ n $ integers, is Hungry if and only if: - Its elements are in increasing order. That is an inequality $ a_{i}&lt;a_{j} $ holds for any two indices $ i,j $ $ (i&lt;j) $ . - For any two indices $ i $ and $ j $ $ (i&lt;j) $ , $ a_{j} $ must not be divisible by $ a_{i} $ . Iahub is in trouble, so he asks you for help. Find a Hungry sequence with $ n $ elements.

输入输出格式

输入格式


The input contains a single integer: $ n $ ( $ 1<=n<=10^{5} $ ).

输出格式


Output a line that contains $ n $ space-separated integers $ a_{1} $ $ a_{2} $ , ..., $ a_{n} $ $ (1<=a_{i}<=10^{7}) $ , representing a possible Hungry sequence. Note, that each $ a_{i} $ must not be greater than $ 10000000 $ ( $ 10^{7} $ ) and less than $ 1 $ . If there are multiple solutions you can output any one.

输入输出样例

输入样例 #1

3

输出样例 #1

2 9 15

输入样例 #2

5

输出样例 #2

11 14 20 27 31

Input

题意翻译

要求构造一个长度为 $n$ 的序列 $a$,满足: - $2\le a_i\le 10^7$ - 对于所有的 $j<i$,均有 $a_j<a_i$; - 序列中不存在一对 $i,j$,满足 $i\ne j$ 并且 $a_i|a_j$ Translated by Rosmarinus.

加入题单

算法标签: