• A Tile Painting(循环节)


    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 |j−i||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 |i−j|>1|i−j|>1 and nmod|i−j|=0nmod|i−j|=0 (where xmodyxmody 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?

    Input

    The first line of input contains a single integer nn (1≤n≤10121≤n≤1012), the length of the path.

    Output

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

    Examples

    Input

    4
    

    Output

    2
    

    Input

    5
    

    Output

    5
    

    Note

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

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

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        long long  n,ans;
        bool flag=1;
        scanf("%lld",&n);
        ans=n;
        for(long long i=2;i<=sqrt(n);++i)
        {
            if(n%i==0)
            {
                    ans=__gcd(ans,i);
                    ans=__gcd(ans,n/i);
            }
        }
        printf("%lld
    ",ans);
    }
  • 相关阅读:
    Unity3D GUI图形用户界面系统
    Unity3D 自动寻路入门指南
    Unity3D 导航网格自动寻路(Navigation Mesh)
    拓展通用的冒泡排序方法
    DoTween 应用设置
    DoTween 教程
    Unity3D 脚本手册
    unity3d中获得物体的size
    Unity自动寻路Navmesh之高级
    C# 代码页获取input的值
  • 原文地址:https://www.cnblogs.com/lunatic-talent/p/12798576.html
Copyright © 2020-2023  润新知