AC题解
2023-05-20 17:45:45
发布于:广东
260阅读
0回复
0点赞
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int n;
cin>>n;
int count=0; //总短信数
double cost=0;
for(int i=0,x;i<n;i++){
cin>>x;
count+=ceil((double)x/70); //向上取整
}
cost=count*0.1;
cout<<cost<<endl;
return 0;
}
全部评论 2
考古
2024-04-13 来自 江苏
0考古
2023-10-05 来自 江苏
0
有帮助,赞一个