A12315 | NN and the Optical Illusion
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
NN is an experienced internet user and that means he spends a lot of time on the social media. Once he found the following image on the Net, which asked him to compare the sizes of inner circles:
It turned out that the circles are equal. NN was very surprised by this fact, so he decided to create a similar picture himself.
He managed to calculate the number of outer circles $n$ and the radius of the inner circle $r$ . NN thinks that, using this information, you can exactly determine the radius of the outer circles $R$ so that the inner circle touches all of the outer ones externally and each pair of neighboring outer circles also touches each other. While NN tried very hard to guess the required radius, he didn't manage to do that.
Help NN find the required radius for building the required picture.
It turned out that the circles are equal. NN was very surprised by this fact, so he decided to create a similar picture himself.
He managed to calculate the number of outer circles $n$ and the radius of the inner circle $r$ . NN thinks that, using this information, you can exactly determine the radius of the outer circles $R$ so that the inner circle touches all of the outer ones externally and each pair of neighboring outer circles also touches each other. While NN tried very hard to guess the required radius, he didn't manage to do that.
Help NN find the required radius for building the required picture.
输入格式
The first and the only line of the input file contains two numbers $n$ and $r$ ( $3 \leq n \leq 100$ , $1 \leq r \leq 100$ ) — the number of the outer circles and the radius of the inner circle respectively.
输出格式
Output a single number $R$ — the radius of the outer circle required for building the required picture.
Your answer will be accepted if its relative or absolute error does not exceed $10^{-6}$ .
Formally, if your answer is $a$ and the jury's answer is $b$ . Your answer is accepted if and only when $\frac{|a-b|}{max(1, |b|)} \le 10^{-6}$ .
Your answer will be accepted if its relative or absolute error does not exceed $10^{-6}$ .
Formally, if your answer is $a$ and the jury's answer is $b$ . Your answer is accepted if and only when $\frac{|a-b|}{max(1, |b|)} \le 10^{-6}$ .
输入输出样例
输入 #1
3 1
输出 #1
6.4641016
输入 #2
6 1
输出 #2
1.0000000
输入 #3
100 100
输出 #3
3.2429391
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted