NN and the Optical Illusion(数学)

NN and the Optical Illusion(数学)

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.

Input

The first and the only line of the input file contains two numbers n
and r (3≤n≤100, 1≤r≤100) — the number of the outer circles and the
radius of the inner circle respectively.

Output

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 |a−b|max(1,|b|)≤10−6.

Examples Input

3 1

标题Output

6.4641016

标题Input

6 1

Output

这里是引用

1.0000000

Input

100 100

Output

3.2429391

代码如下(数学计算):

#include <stdio.h>
#include <stdlib.h>
#include<string.h>
#define pi 3.1415926535
int main()
{
    double n,r;
    scanf("%lf%lf",&n,&r);
    double x=pi*(n-2)/n;
    printf("%.7f\n",r*cos(x/2)/(1-cos(x/2)));
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值