PTA甲级考试真题练习8——1008 Elevator
程序员文章站
2022-06-07 13:13:14
...
题目
生词生句
- The numbers denote at which floors the elevator will stop
数字标识电梯将停在哪个楼层 -
in specified order
按指定的顺序
思路
水题
代码
int main()
{
int num;
cin >> num;
int cur_floor = 0;
int sum_time = 0;
for (int i = 0; i < num; ++i)
{
int to_floor;
cin >> to_floor;
int changefloor = to_floor - cur_floor;
if (changefloor > 0)
{
sum_time += changefloor * 6;
}
else if (changefloor < 0)
{
sum_time += (-changefloor) * 4;
}
cur_floor = to_floor;
sum_time += 5;
}
cout << sum_time;
}
上一篇: SpringMVC中关于FastJson泛型对象的转换问题
下一篇: Optional 部分源码
推荐阅读
-
PTA甲级考试真题练习111——1111 Online Map
-
PTA甲级考试真题练习22——1022 Digital Library
-
PTA甲级考试真题练习18——1018 Public Bike Management
-
PTA甲级考试真题练习20——1020 Tree Traversals
-
PTA甲级考试真题练习30——1030 Travel Plan
-
PTA甲级考试真题练习17——1017 Queueing at Bank
-
PTA甲级考试真题练习8——1008 Elevator
-
PTA甲级考试真题练习23——1023 Have Fun with Numbers
-
PTA甲级考试真题练习5——1005 Spell It Right
-
PTA甲级考试真题练习11——1011 World Cup Betting