Exams(思维题)

本文介绍了一个关于Codeforces竞赛得分的算法问题。作者需要参加多次考试,并为每次考试选择一个2到5之间的整数作为分数。为了确保总分恰好等于k,同时避免重考过多科目,文章提供了一种高效计算最少重考次数的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Description

One day the Codeforces round author sat exams. He had n exams and he needed to get an integer from 2 to 5 for each exam. He will have to re-sit each failed exam, i.e. the exam that gets mark 2.

The author would need to spend too much time and effort to make the sum of his marks strictly more than k. That could have spoilt the Codeforces round. On the other hand, if the sum of his marks is strictly less than k, the author's mum won't be pleased at all.

The Codeforces authors are very smart and they always get the mark they choose themselves. Also, the Codeforces authors just hate re-sitting exams.

Help the author and find the minimum number of exams he will have to re-sit if he passes the exams in the way that makes the sum of marks for all n exams equal exactly k.

Input

The single input line contains space-separated integers n and k (1 ≤ n ≤ 50, 1 ≤ k ≤ 250) — the number of exams and the required sum of marks.

It is guaranteed that there exists a way to pass n exams in the way that makes the sum of marks equal exactly k.

Output

Print the single number — the minimum number of exams that the author will get a 2 for, considering that the sum of marks for all exams must equal k.

Sample Input

Input
4 8
Output
4
Input
4 10
Output
2
Input
1 3
Output
0

Sample Output

Hint

In the first sample the author has to get a 2 for all his exams.

In the second sample he should get a 3 for two exams and a 2 for two more.

In the third sample he should get a 3 for one exam.

题解:如果你按2分来算个数肯定很麻烦,经过大佬指点,发现可以这样分析,假设每场考试都得3分,看看比k多多少,多的部分就为得2分的考试场次。

代码如下:

#include<stdio.h>  
int main()  
{  
    int a,b;  
    scanf("%d%d",&a,&b);  
    if(b/a==2)//只有在2附近才会得出结论,小于2则有不到两分的,大于2平均可以3分以上
        printf("%d\n",a-b%a);  
    else  
        printf("0\n");  
    return 0;  
}  




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值