void ys(LL n) { for(LL i = 1; i*i <= n; i ++) if(n%i == 0) { h[len ++] = i; if(i*i != n) h[len ++] = n/i; } }