CountDiv 發表於 2023-02-13 | 分類於 codility , Prefix Sum problemsolution1234567891011121314// 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)