2018년 2월 3일 토요일

[python][hackerrank] The Hurdle Race

이렇게 풀었다.
https://www.hackerrank.com/challenges/the-hurdle-race/problem
#!/bin/python3

n, k = [int(x) for x in input().strip().split(' ')]
height = [int(x) for x in input().strip().split(' ')]


print((lambda x: x if x > 0 else 0)(max(height)-k))
음... 나쁘지 않은듯. 결국 인풋을 받는 내용을 빼고는 한줄로 끝낸 거니까... 근대 이게 효율적인건가?

댓글 없음:

댓글 쓰기