P8507 毕业后 题解

温馨提示: \color{#E74C3C}\text{温馨提示:} 温馨提示:

遇见题解勿抄袭,棕名封号两行泪。 \color{#E74C3C}\text{遇见题解勿抄袭,棕名封号两行泪。} 遇见题解勿抄袭,棕名封号两行泪。

题目传送门

思路:

这道题是一道数学题目。

我们知道 w w w 最大的时候显然每个人一门都不及格,所以每门课有 ⌊ b a ⌋ \lfloor \frac{b}{a} \rfloor ab 人不及格。

为什么呢?因为我们要把 b b b 个人,也就是挂科人数,分给 a a a 门课,显然分均匀的话就是 ⌊ b a ⌋ \lfloor \frac{b}{a} \rfloor ab 了。

因为我们求的是概率,那么答案就是 w = ⌊ b a ⌋ b w=\frac{\lfloor \frac{b}{a} \rfloor}{ b} w=bab 了。

注意:输出保留 16 16 16 位小数,类型最好用 floor 类型。


Coding Time \text{Coding Time} Coding Time

#include

using namespace std;

double a,b;

int main()
{
    scanf("%lf%lf",&a,&b);
    printf("%.16lf",(floor)(b/a)/b);
    return 0;
}

AC 记录

The End \text{The End} The End

你可能感兴趣的:(洛谷题解,算法,c++,开发语言)