若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。


  • 运维

  • 前端

  • 编程

  • 随笔

  • hust-oj

1100: Problem A – Y2K Accounting Bug

发表于 2017-10-06   |   分类于 HUSTOJ   |   阅读次数 1,439

题目描述

Problem A – Y2K Accounting Bug
Accounting for Computer Machinists (ACM) has sufferred from the Y2K bug and lost some vital data for preparing annual report for MS Inc.
All what they remember is that MS Inc. posted a surplus or a deficit each month of 1999 and each month when MS Inc. posted surplus, the amount of surplus was s and each month when MS Inc. posted deficit, the deficit was d. They do not remember which or how many months posted surplus or deficit. MS Inc., unlike other companies, posts their earnings for each consecutive 5 months during a year. ACM knows that each of these 8 postings reported a deficit but they do not know how much. The chief accountant is almost sure that MS Inc. was about to post surplus for the entire year of 1999. Almost but not quite.
Write a program, which decides whether MS Inc. suffered a deficit during 1999, or if a surplus for 1999 was possible, what is the maximum amount of surplus that they can post.
Input is a sequence of lines, each containing two positive integers s and d. For each line of input, output one line containing either a single integer giving the amount of surplus for the entire year, or output Deficit if it is impossible.

输入

暂无

输出

暂无

样例输入

59 237
375 743
200000 849694
2500000 8000000

样例输出

116
28
300612
Deficit

参考代码

#include<stdio.h>  
int main() 
{
    int s, d;
    while(scanf("%d%d", &s,&d) != EOF) 
    {
        int ans = -1;
        if(4*s < d) ans = 10*s-2*d; else if(3*s < 2*d) ans = 8*s-4*d; else if(2*s < 3*d) ans = 6*s-6*d; else if(s < 4*d) ans = 3*s-9*d;
        if(ans < 0) printf("Deficitn");  
        else printf("%dn", ans);   
    }  
    return 0;  
}

解析

暂无

hustoj

发表评论 取消回复

邮箱地址不会被公开。 必填项已用*标注

*
*


hoxis wechat
著作权归作者所有
站点更新说明
  • 文章目录
  • 站点概览
若是凉夜已成梦

若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。

1904 日志
6 分类
12 标签
RSS
weibo github twitter facebook

友情链接

原站点 Dreams孤独患者 Skip
© 2017 若是凉夜已成梦
Powered by WordPress | 已运行
Theme By NexT.Mist