PAT甲题题解-1008. Elevator (20)-大么个大水题,这也太小瞧我们做题者的智商了
Posted 辰曦~文若
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT甲题题解-1008. Elevator (20)-大么个大水题,这也太小瞧我们做题者的智商了相关的知识,希望对你有一定的参考价值。
如题。。。
#include <iostream> #include <cstdio> #include <algorithm> #include <cstring> #include <string.h> using namespace std; //太水了好吧。。。 int n; int timeup=6; int timedown=4; int main() { scanf("%d",&n); int last=0; int now; int sum=0; for(int i=0;i<n;i++){ scanf("%d",&now); sum+=((now-last)>=0)?(now-last)*timeup:(last-now)*timedown; last=now; } printf("%d",sum+n*5); return 0; }
以上是关于PAT甲题题解-1008. Elevator (20)-大么个大水题,这也太小瞧我们做题者的智商了的主要内容,如果未能解决你的问题,请参考以下文章