第N个丑数
摘要:
#include <bits/stdc++.h> using namespace std; #define ll long long /* 把只包含质因子2、3和5的数称作丑数(Ugly Number)。 例如6、8都是丑数,但7、14不是,因为它们包含质因子7。 习惯上我们把1当做是第一个丑数。 */ //第N个丑数 ll a[3]={2,3,5}; int main() { int n; sc 阅读全文
posted @ 2019-09-16 22:27 cltt 阅读(163) 评论(0) 推荐(0) 编辑