zoukankan      html  css  js  c++  java
  • 【 CodeForces 604A】B

     

    http://acm.hust.edu.cn/vjudge/contest/view.action?cid=102271#problem/B

    Description

    Kevin Sun has just finished competing in Codeforces Round #334! The round was 120 minutes long and featured five problems with maximum point values of 500, 1000, 1500, 2000, and 2500, respectively. Despite the challenging tasks, Kevin was uncowed and bulldozed through all of them, distinguishing himself from the herd as the best cowmputer scientist in all of Bovinia. Kevin knows his submission time for each problem, the number of wrong submissions that he made on each problem, and his total numbers of successful and unsuccessful hacks. Because Codeforces scoring is complicated, Kevin wants you to write a program to compute his final score.

    Codeforces scores are computed as follows: If the maximum point value of a problem is x, and Kevin submitted correctly at minute mbut made w wrong submissions, then his score on that problem is . His total score is equal to the sum of his scores for each problem. In addition, Kevin's total score gets increased by 100 points for each successful hack, but gets decreased by 50 points for each unsuccessful hack.

    All arithmetic operations are performed with absolute precision and no rounding. It is guaranteed that Kevin's final score is an integer.

    Input

    The first line of the input contains five space-separated integers m1, m2, m3, m4, m5, where mi (0 ≤ mi ≤ 119) is the time of Kevin's last submission for problem i. His last submission is always correct and gets accepted.

    The second line contains five space-separated integers w1, w2, w3, w4, w5, where wi (0 ≤ wi ≤ 10) is Kevin's number of wrong submissions on problem i.

    The last line contains two space-separated integers hs and hu (0 ≤ hs, hu ≤ 20), denoting the Kevin's numbers of successful and unsuccessful hacks, respectively.

    Output

    Print a single integer, the value of Kevin's final score.

    Sample Input

    Input
    20 40 60 80 100
    0 1 2 3 4
    1 0
    Output
    4900
    Input
    119 119 119 119 119
    0 0 0 0 0
    10 0
    Output
    4930

    Hint

    In the second sample, Kevin takes 119 minutes on all of the problems. Therefore, he gets  of the points on each problem. So his score from solving problems is. Adding in 10·100 = 1000points from hacks, his total score becomes 3930 + 1000 = 4930.

    简单模拟。

    #include<stdio.h>
    #include<algorithm>
    #define maxx 10
    using namespace std;
    long long hu,hs;
    double x[maxx]={500, 1000, 1500, 2000, 2500},w[maxx],score,m[maxx];
    int main(){
        for(int i=0;i<5;i++)
            scanf("%lf",&m[i]);
        for(int i=0;i<5;i++)
            scanf("%lf",&w[i]);
        scanf("%lld%lld",&hs,&hu);
        for(int i=0;i<5;i++)
            score+=max(0.3*x[i],(1-m[i]/250)*x[i]-50*w[i]);
        score+=100*hs-50*hu;
        printf("%.0f
    ",score);//.0f实际上是四舍五入,但是题目保证了答案一定是整数
        return 0;
    }

     或者

    #include<stdio.h>
    #include<algorithm>
    #define maxx 10
    using namespace std;
    long long x[maxx]={500, 1000, 1500, 2000,2500},w[maxx],score,m[maxx],hu,hs;
    int main(){
        for(int i=0;i<5;i++)
            scanf("%lld",&m[i]);
        for(int i=0;i<5;i++)
            scanf("%ldd",&w[i]);
        scanf("%lld%lld",&hs,&hu);
        for(int i=0;i<5;i++)
            score+=max(x[i]*3/10,(x[i]-m[i]*x[i]/250)-50*w[i]);
        score+=100*hs-50*hu;
        printf("%lld
    ",score);
        return 0;
    }

      

  • 相关阅读:
    js上传文件(图片)限制格式及大小为3M
    position:fixed部分版本的浏览器不支持
    iframe自适应高度的方法
    div左右自适应高度一致
    IE中部分版本的浏览器对Select标签设置innerHTML无效的问题
    在ie10中如何禁用输入框中的小眼睛 与 叉叉 删除按钮
    input输入框默认文字,点击消失
    调用iframe中父页面/子页面中的JavaScript方法
    iframe的一些介绍
    artDialog的一些例子与一些属性的介绍。
  • 原文地址:https://www.cnblogs.com/flipped/p/5045238.html
Copyright © 2011-2022 走看看