/ CYOJ /

记录详情

Accepted


  
[Hydro](https://hydro.ac)提供评测服务
# 状态 耗时 内存占用
#1 Accepted 3ms 256.0 KiB
#2 Accepted 3ms 256.0 KiB
#3 Accepted 2ms 256.0 KiB
#4 Accepted 3ms 256.0 KiB
#5 Accepted 3ms 256.0 KiB
#6 Accepted 3ms 256.0 KiB
#7 Accepted 2ms 256.0 KiB
#8 Accepted 3ms 256.0 KiB
#9 Accepted 1ms 256.0 KiB
#10 Accepted 2ms 384.0 KiB

代码

#include<iostream>
using namespace std;
int a,b,c,i,k;
bool v;//布尔值,判断有没有超过预算 
int main(){
	b = 0;//津津现有钱数 
	c = 0;//存款数 
	v = 0;
	for (i = 1; i <= 12;i++){
		cin>> a;//输入当月的预算 
		b = b + 300;//妈妈给了300元 
		if(v == 0){
			if(b >= a ){
				b = b - a;
				c += b - b % 100;
				b = b %  100; 
			}
			else{
				v = 1;//布尔值变为false 
				k = i;//记录第一个超过预算的月 
			}

		}
	}
	if(v == 0){
		cout<<(c + c / 5+ b)<<endl;//没超过预算 
	}
	else{
		cout<< "-"<< k<< endl;//超过预算 
	}
}

信息

递交者
类型
递交
题目
P1011 津津的储蓄计划
语言
C++
递交时间
2022-08-29 17:56:11
评测时间
2022-08-29 17:56:11
评测机
分数
100
总耗时
28ms
峰值内存
384.0 KiB