摘要: ###Problem 给定一个数 $n$,求 $1$ 到 $n$ 的约数个数和。 ###Solution $\text{40pts}$: 使用一个 for 枚举 $n$ 以内的数的所有约数,时间复杂度 $O(n^2)$。 点击查看代码 for(int i=1;i<=n;++i){ for(int j 阅读全文
posted @ 2022-11-25 20:57 Akane_Moon 阅读(35) 评论(0) 推荐(0)

“一言(ヒトコト)