기타/Codility

[Easy] FrogJmp

백곰곰 2022. 5. 22. 16:45
728x90
반응형

[문제]

현재 위치(X), 점프 거리(D), 목표지점(Y)

현재 위치로부터 목표지점에 도달/지나칠 때까지 몇번의 점프를 해야하는지 찾는 문제

 

FrogJmp coding task - Learn to Code - Codility

Count minimal number of jumps from position X to Y.

app.codility.com

[코드]

# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")

def solution(X, Y, D):
    # write your code in Python 3.6
    count=Y-X
    if count==0:
        return 0

    i = int(count/D)
    j = int(count%D)

    if j==0:
      return i
    else:
      return i+1
728x90

'기타 > Codility' 카테고리의 다른 글

[Easy] Distinct  (0) 2022.05.25
[Easy] PassingCars  (0) 2022.05.24
[Easy] CyclicRotation  (0) 2022.05.22
[Easy] ArrListLen  (0) 2022.05.22
[Easy] BinaryGap  (0) 2022.05.22