题目链接:uva 10892 - LCM Cardinality
题目大意:给出l,为说有多少组A,B的最小公约数为l。
解题思路:将L的因子分离出来,因为最大不过几百个,所以可以用o(n^2)暴力枚举一下。
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <algorithm>
using namespace std;
const int N = 1005;
typedef long long ll;
int m;
ll c[N];
void init (ll k) {
m = 0;