CF1242A.Tile Painting

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Ujan has been lazy lately, but now has decided to bring his yard to good shape. First, he decided to paint the path from his house to the gate.

The path consists of nn consecutive tiles, numbered from 11 to nn . Ujan will paint each tile in some color. He will consider the path aesthetic if for any two different tiles with numbers ii and jj , such that ji|j - i| is a divisor of nn greater than 11 , they have the same color. Formally, the colors of two tiles with numbers ii and jj should be the same if ij>1|i-j| > 1 and nmodij=0n \bmod |i-j| = 0 (where xmodyx \bmod y is the remainder when dividing xx by yy ).

Ujan wants to brighten up space. What is the maximum number of different colors that Ujan can use, so that the path is aesthetic?

输入格式

The first line of input contains a single integer nn ( 1n10121 \leq n \leq 10^{12} ), the length of the path.

输出格式

Output a single integer, the maximum possible number of colors that the path can be painted in.

输入输出样例

  • 输入#1

    4
    

    输出#1

    2
    
  • 输入#2

    5
    

    输出#2

    5
    

说明/提示

In the first sample, two colors is the maximum number. Tiles 11 and 33 should have the same color since 4mod31=04 \bmod |3-1| = 0 . Also, tiles 22 and 44 should have the same color since 4mod42=04 \bmod |4-2| = 0 .

In the second sample, all five colors can be used.

首页