摘要: 求因子数: LL Getn(LL x){ LL ret = 1; for(LL i = 2; i * i <= x; i++){ if(x % i == 0){ LL a = 0; while(x % i == 0){ x /= i; a++; } ret = ret * (a + 1); } } 阅读全文
posted @ 2020-02-07 20:44 _Ackerman 阅读(625) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-02-07 20:16 _Ackerman 阅读(10) 评论(0) 推荐(0)