C. Polygon for the Angle(计算几何,数论)

C. Polygon for the Angle

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given an angle angang.

The Jury asks You to find such regular nn-gon (regular polygon with nn vertices) that it has three vertices aa, bb and cc (they can be non-consecutive) with ∠abc=ang∠abc=ang or report that there is no such nn-gon.

If there are several answers, print the minimal one. It is guarantied that if answer exists then it doesn't exceed 998244353998244353.

Input

The first line contains single integer TT (1≤T≤1801≤T≤180) — the number of queries.

Each of the next TT lines contains one integer angang (1≤ang<1801≤ang<180) — the angle measured in degrees.

Output

For each query print single integer nn (3≤n≤9982443533≤n≤998244353) — minimal possible number of vertices in the regular nn-gon or −1−1 if there is no such nn.

Example

input

Copy

4
54
50
2
178

output

Copy

10
18
90
180

Note

The answer for the first query is on the picture above.

The answer for the second query is reached on a regular 1818-gon. For example, ∠v2v1v6=50∘∠v2v1v6=50∘.

The example angle for the third query is ∠v11v10v12=2∘∠v11v10v12=2∘.

In the fourth query, minimal possible nn is 180180 (not 9090).

解析:

m边形最大为(m-2)*180/m的∠

可以分出(1/(m-2))*x*[(m-2)*180/m]的∠   (1<=x<=m-2),   1~(m-2)    个  180/m  的∠合并

公式:x/m=n/180,(x,n,m都为整数)

结果为:180/gcd(180,n)

但最大∠要大于(m-2)*180/m

所以如果小于,就✖2

ac:

#include<bits/stdc++.h>
#define ll long long
using namespace std;

int gcd(int a,int b){return b==0?a:gcd(b,a%b);}

int main()
{
    int t,n;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        int x=180/gcd(180,n);
        if(n>((x-2)*180/x))
            cout<<x*2<<endl;
        else cout<<x<<endl;
    }
    return 0;
}

 

 

转载于:https://www.cnblogs.com/wangtao971115/p/10358189.html

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值