pat 1008(patek philippe百达翡丽官网)

网友投稿 253 2022-09-20


pat 1008(patek philippe百达翡丽官网)

1.题目 https://patest.cn/contests/pat-a-practise/1008 2.题意分析及坑点 (1).我们需要注意的是题目中的这么一句话: “For a given request list, you are to compute the total time spent to fulfill the requests on the list. The elevator is on the 0th floor at the beginning and does not have to return to the ground floor when the requests are fulfilled.” 翻译后的话为:对于给定的一个序列,你需要计算到达列表中每一个楼层的总时间,电梯是 从第0层开始,且最后不必回到第一楼。 3.代码 #include #define size 1001 /* 1.最后不必回到第0层或者第1层,注意题目要求 */ int main(){ int number; int array[size], dealWithArray[size]={0};//一开始的数组和处理后的数组 scanf("%d",&number); int i ; array[0] = 0;//the start is zero floor for(i = 1;i <= number;i++){ scanf("%d",&array[i]); dealWithArray[i-1] = array[i] - array[i-1];//求出两个楼层之间的距离 } int sum = 0 ;//初始化sum的值为0 sum = number * 5;//加上所有楼层停的时间 for(i = 0; i0) sum = sum +( dealWithArray[i] * 6 ); } printf("%d",sum); } /** 3 2 3 1 1 0 **/


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:SpringBoot 如何使用RestTemplate来调用接口
下一篇:PAT 1085(patty)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~