|
||||||||||
ArnoldTime Limit: 20000/10000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 887 Accepted Submission(s): 266 Problem Description Do you know Vladimir Arnold? He's a mathematician who demonstrated an image transformation method called arnold transformation, which could shuffle all pixels in an image, and after a serials of this transformation, the image would be transformed to its original form. The transformation method is quite simple. For a given image with N ¡Á N pixels (Width and height are both equal to N), a pixel at location (x, y) will be shuffled to location ( (x + y) % N , (x + 2 ¡Á y) % N ) (0 ¡Ü x < N, 0 ¡Ü y < N). In one step of transformation, all N ¡Á N pixels will be shuffled to new corresponding location, making the image a chaotic one. You can do the transformation as many times as you can. The arnold transformation is very interesting. For every image of size N ¡Á N, after finite steps of transformation, the image will become exact the same as the original one. The minimum number of steps which make every possible image become the same as origin will be called as period of arnold transformation. For a given N, can you calculate the period? Input There will be about 200 test cases. For each test case, there will be an integer N in one line. Here N (2 ¡Ü N ¡Ü 4000000000) equals to width and height of images. Output For each test case, please calculate the period of arnold transformation and output it in one line. Sample Input
Sample Output
Source | ||||||||||
|