码迷,mamicode.com
首页 > 其他好文 > 详细

PAT甲题题解-1008. Elevator (20)-大么个大水题,这也太小瞧我们做题者的智商了

时间:2017-04-18 16:03:54      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:lap   int   log   names   tor   play   pre   src   scan   

如题。。。

技术分享
#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;
}
View Code

 

PAT甲题题解-1008. Elevator (20)-大么个大水题,这也太小瞧我们做题者的智商了

标签:lap   int   log   names   tor   play   pre   src   scan   

原文地址:http://www.cnblogs.com/chenxiwenruo/p/6727893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!