HDOJ_1008_Elevator
AC代码:
#include <iostream> #include <cstdio> #define Max 105 using namespace std; int a[Max]; int main(void) { freopen("in.txt","r",stdin); int n; while(scanf("%d",&n)!=EOF&&n) { int temp=0,i; long long time=0; for(i=1;i<=n;i++) { scanf("%d",&a[i]); if(temp<a[i]) { time+=(a[i]-temp)*6+5; temp=a[i]; } else if(temp>a[i]) { time+=(temp-a[i])*4+5; temp=a[i]; } else { time+=5; } } printf("%lld\n",time); } fclose(stdin); return 0; }
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步