题目来源
一道用固定容量的杯子来获得对应体积的水的题目,感觉很熟悉,但是不知道怎么做。
发现是道数学题,代码如下:
class Solution {
public:
bool canMeasureWater(int x, int y, int z) {
long long sum = x + y;
if (sum >= z && (z == 0 || z % __gcd(x, y) == 0))
return true;
return false;
}
};
网友评论