样例schema的分类 HR: Human Resources OE: Order Entry PM: Product Media IX: Information Exchange SH: Sales History BI: Business Intelligence
安装样例数据库
1:HR的安装,通过dbca时候 2:HR的安装,安装完数据库后&#…
思路:先把x, y除以最大公约数变成最小值,然后同时乘以倍数cnt,只记录两个数都在[l,r]间的倍数。
代码:
int gcd(int a,int b){return b ? gcd(b, a % b) : a;
}void solve(){int x, y, l, r;cin >> x >> y >>…