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

Service Lane

时间:2015-05-09 10:02:18      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

Link

  https://www.hackerrank.com/challenges/service-lane

 

def main():
    n, t = map(int, raw_input().split())
    arr = raw_input().split() # 这句自动将输入的数据切成列表

    for _ in range(t):
        s, e = map(int, raw_input().split())
        print min(arr[s:e+1]) # :这种标注下标的方式非常方便


main()

 

 

学习

  min()自带的函数

  spliy()切成list

 

错误

  [:]含前补含后

Service Lane

标签:

原文地址:http://www.cnblogs.com/sangocare/p/4489422.html

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