zoukankan      html  css  js  c++  java
  • <cf>A. Exams

    A. Exams
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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 ≤ 501 ≤ 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 test(s)
    input
    4 8
    
    output
    4
    
    input
    4 10
    
    output
    2
    
    input
    1 3
    
    output
    0
    
    Note

    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.

    思路:当k==2*n时,要重考n次,当k>=3*n时不需要重考,关键是2*n<k<3*n时,k比2*n大多少就要重考多少次。就是

    补考 次数=n-(k-2*n) (2*n<=k<3*n); 补考次数=0(k>=3*n)

    #include <iostream>
    using namespace std;
    int main()
    {
        int n,k,sum;
        while(cin>>n>>k)
        {
            if(3*n<=k) sum=0;
            //2*n<=k<3*n
            else sum=n-(k-2*n);
            cout<<sum<<endl;
        }
        return 0;
    }



  • 相关阅读:
    经典背景音乐集(转)
    商业模式的思考
    PHP5.4的变化关注What has changed in PHP 5.4.x
    yii模版中的写法
    设计模式(一)工厂模式Factory(创建型)
    yii模版中的判断方法
    Yacc 与 Lex 快速入门(词法分析和语法分析)
    Windows PHP 中 VC6 X86 和 VC9 X86 的区别及 Non Thread Safe 的意思
    金融系列1《借贷记卡介绍》
    设计模式概论
  • 原文地址:https://www.cnblogs.com/cszlg/p/2910589.html
Copyright © 2011-2022 走看看