A. Fancy Fence1100 / 打表
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Fancy Fence1100 / 打表相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/270/A
所以n边形的内角和是(n-2)·180°.(n为边数)
先打表符合的所有的角度
#include<bits/stdc++.h>
using namespace std;
map<double,int>mp;
int main(void)
{
for(int i=3;i<=700;i++) mp[1.0*(i-2)*180/i]++;
int t; cin>>t;
while(t--)
{
int x; cin>>x;
if(mp[x]) puts("YES");
else puts("NO");
}
return 0;
}
以上是关于A. Fancy Fence1100 / 打表的主要内容,如果未能解决你的问题,请参考以下文章