分析
这题和AcWing小凯的疑惑 这题是一样的。对于给定两个数a,b,不能用$a$x+b$y$凑出的最大数为$a*b-a-b$,具体证明比较复杂,我一般记住这个结论。
C++ 代码
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
cout << a * b - a - b << endl;
return 0;
}
这题和AcWing小凯的疑惑 这题是一样的。对于给定两个数a,b,不能用$a$x+b$y$凑出的最大数为$a*b-a-b$,具体证明比较复杂,我一般记住这个结论。
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
cout << a * b - a - b << endl;
return 0;
}