解题
2023-04-09 23:06:22
发布于:陕西
7阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
bool add(long long a,long long b){
if(a-b<=300){
return false;
}
return true;
}
int main(){
int a,b=0,c=0,d,e=0,f;
for(int i=1;i<=12;i++){
cin>>a;
if(e){
continue;
}
if(add(a,b)){
f=i;
e=1;
}
else{
b+=300;
b-=a;
d=b/100;
c+=d*100;
b=b%100;
}
}
if(e){
cout<<"-"<<f;
}
else{
c=c+c/5;
c+=b;
cout<<c;
}
return 0;
}
这里空空如也
有帮助,赞一个