CountDiv

problem

solution

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// you can use includes, for example:
// #include <algorithm>

// you can write to stdout for debugging purposes, e.g.
// cout << "this is a debug message" << endl;

int solution(int A, int B, int K) {
// write your code in C++14 (g++ 6.2.0)
// if(K==1) return B-A+1;
while(A<B && A%K!=0) A++;
while(A<B && B%K!=0) B--;
if(A%K!=0) return 0;
return (B-A)/K+1;
}

analysis

  • time complexity O(1)
  • space complexity O(1)