for (int i = 1; i <= n; i++) { for (int j = i; j <= n; j += i) { for (int k = j; k <= n; k += j) { cnt++; } } }
cnt 大概是什么量级的,thx