A12339 | Polygon for the Angle
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an angle $\text{ang}$ .
The Jury asks You to find such regular $n$ -gon (regular polygon with $n$ vertices) that it has three vertices $a$ , $b$ and $c$ (they can be non-consecutive) with $\angle{abc} = \text{ang}$ or report that there is no such $n$ -gon.
If there are several answers, print the minimal one. It is guarantied that if answer exists then it doesn't exceed $998244353$ .
The Jury asks You to find such regular $n$ -gon (regular polygon with $n$ vertices) that it has three vertices $a$ , $b$ and $c$ (they can be non-consecutive) with $\angle{abc} = \text{ang}$ or report that there is no such $n$ -gon.
If there are several answers, print the minimal one. It is guarantied that if answer exists then it doesn't exceed $998244353$ .
输入格式
The first line contains single integer $T$ ( $1 \le T \le 180$ ) — the number of queries.
Each of the next $T$ lines contains one integer $\text{ang}$ ( $1 \le \text{ang} < 180$ ) — the angle measured in degrees.
Each of the next $T$ lines contains one integer $\text{ang}$ ( $1 \le \text{ang} < 180$ ) — the angle measured in degrees.
输出格式
For each query print single integer $n$ ( $3 \le n \le 998244353$ ) — minimal possible number of vertices in the regular $n$ -gon or $-1$ if there is no such $n$ .
输入输出样例
输入 #1
4 54 50 2 178
输出 #1
10 18 90 180
The answer for the first query is on the picture above.
The answer for the second query is reached on a regular $18$ -gon. For example, $\angle{v_2 v_1 v_6} = 50^{\circ}$ .
The example angle for the third query is $\angle{v_{11} v_{10} v_{12}} = 2^{\circ}$ .
In the fourth query, minimal possible $n$ is $180$ (not $90$ ).
The answer for the second query is reached on a regular $18$ -gon. For example, $\angle{v_2 v_1 v_6} = 50^{\circ}$ .
The example angle for the third query is $\angle{v_{11} v_{10} v_{12}} = 2^{\circ}$ .
In the fourth query, minimal possible $n$ is $180$ (not $90$ ).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted