3672.Shifting

Time Limit: 1s Memory Limit: 256MB

John Doe has found the beautiful permutation formula.

Let's take permutation p=p1,p2,...,pn. Let's define transformation f of this permutation:

3672_1.png

where k (k \gt 1) is an integer, the transformation parameter, r is such maximum integer that rk \le n. If rk=n, then elements prk+1,prk+2 and so on are omitted. In other words, the described transformation of permutation p cyclically shifts to the left each consecutive block of length k and the last block with the length equal to the remainder after dividing n by k.

John Doe thinks that permutation f(f(...f(p=[1,2,...,n],2)...,n-1),n) is beautiful. Unfortunately, he cannot quickly find the beautiful permutation he's interested in. That's why he asked you to help him.

Your task is to find a beautiful permutation for the given n. For clarifications, see the notes to the third sample.

Input Format(From the terminal/stdin)

A single line contains integer n (2 \le n \le 106).

Output Format(To the terminal/stdout)

Print n distinct space-separated integers from 1 to n - a beautiful permutation of size n.

Sample Input 1

Copy
2
 \n

Sample Output 1

Copy
2 1 
 · \n

Sample Input 2

Copy
3
 \n

Sample Output 2

Copy
1 3 2 
 · · \n

Sample Input 3

Copy
4
 \n

Sample Output 3

Copy
4 2 3 1 
 · · · \n

Hints

A note to the third test sample:
f([1,2,3,4],2)=[2,1,4,3] f([2,1,4,3],3)=[1,4,2,3] f([1,4,2,3],4)=[4,2,3,1]

Submit

请先 登录

© 2025 FAQs