-
(코딜리티) Lesson 3 : Frogjmp - PythonAlgorithm/코딜리티 2021. 1. 17. 01:42
쉬운 문제
문제 : app.codility.com/programmers/lessons/3-time_complexity/frog_jmp/
문제 설명
X, Y, D가 주어지면, X는 시작점 Y는 도착점 D는 한번에 뛰는 거리일 때 총 뛰어야 하는 횟수를 구하시오
제한 사항
X, Y그리고 D는 1~1,000,000,000 사이의 값
코드
# you can write to stdout for debugging purposes, e.g. # print("this is a debug message") import math def solution(X, Y, D): T = Y-X g = T/D return math.ceil(g)
'Algorithm > 코딜리티' 카테고리의 다른 글
(코딜리티) Lesson 3 : TapeEquilibrium - Python (0) 2021.01.17 (코딜리티) Lesson 3 : PermMissingElem - Python (0) 2021.01.17 (코딜리티) Lesson 2 : OddOccurrencesInArray - Python (0) 2021.01.17 (코딜리티) Lesson 2 : CyclicRotation - Python (0) 2021.01.16 (코딜리티) Lesson 1 : Binary Gap - Python (0) 2021.01.15 댓글