跳至主要内容

FrogJmp

#include <bits/stdc++.h>

using namespace std;

int solution(int X, int Y, int D)
{
return ceil((Y - X) * 1.0 / D);
}
  • T: O(1)O(1)
  • S: O(1)O(1)