标签:
见问题: https://vijos.org/p/1096
比如11月初津津手中还有83元。妈妈给了津津300元。津津估计11月的花销是180元,那么她就会在妈妈那里存200元,自己留下183元。到了11月月末,津津手中会剩下3元钱。
津津发现这个储蓄计划的主要风险是。存在妈妈那里的钱在年末之前不能取出。有可能在某个月的月初。津津手中的钱加上这个月妈妈给的钱,不够这个月的原定预算。假设出现这样的情况,津津将不得不在这个月省吃俭用,压缩预算。
如今请你依据2004年1月到12月每一个月津津的预算,推断会不会出现这样的情况。假设不会,计算到2004年年末,妈妈将津津寻常存的钱加上20%还给津津之后,津津手中会有多少钱。
难得我也会认为一道题目水. 这道题就是超级简单的模拟题.
评測机貌似有Bug, 我本地通过測试的代码提交之后就WA.
看到有人说, 把
deposit * 1.2;
换成
<pre name="code" class="cpp"> deposit + <span style="font-family: Arial, Helvetica, sans-serif;">deposit / 5;</span>
就能够AC. 试了一下果然是这样.
一定是评測机有问题.
我在Ubuntu 14.04 + gcc 4.8.2环境下执行全部測试点就能够AC.
#include <iostream> int main() { const int NUMBER_OF_MONTHS = 12; int expenses[NUMBER_OF_MONTHS] = {0}; // Input for ( int i = 0; i < NUMBER_OF_MONTHS; ++ i ) { std::cin >> expenses[i]; } // Processing int balance = 0, deposit = 0, month = 0; for ( ; month < NUMBER_OF_MONTHS && balance >= 0; ++ month ) { balance += 300; balance -= expenses[month]; while ( balance > 100 ) { deposit += 100; balance -= 100; } } // Output if ( balance > 0 ) { balance += deposit * 1.2; std::cout << balance << std::endl; } else { std::cout << -month << std::endl; } return 0; }
版权声明:本文博主原创文章。博客,未经同意不得转载。
标签:
原文地址:http://www.cnblogs.com/lcchuguo/p/4821288.html