C. Polygon for the Angle Educational Codeforces Round 57 (Rated for Div. 2)(枚举)

C. Polygon for the Angle

题意:给你一个角度,让你求出存在此角度的最小正多边形,不存在输出-1;

题解:暴力,看代码注释

代码

#include <iostream>
#include <bits/stdc++.h>
using namespace std;
#define int double
signed main(){
    int t;
    cin>>t;
    while(t--){
        int x;
        cin>>x;
        bool ok=0;
        for(int i=3;i<=998244353;i++){//暴力枚举每个正多边形
            int mx=(i-2)*180/i;/*最大内角*/
            int mn=(90-mx/2);/*最小内角*/
            //cout<<mx<<" "<<mn<<endl;
            for(int j=mn;j<=mx;j+=mn){/*依次枚举每一个可能的角,存在的角是等差数列,差是最小内角*/
                if(j==x){
                    ok=1;
                    break;
                }
            }
            if(ok){
                cout<<i<<endl;
                break;
            }
        }
        if(!ok){
            cout<<-1<<endl;
        }

    }
    return 0;
}

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).

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值