1 条题解
-
-1songhongyi LV 8 MOD @ 2020-09-20 13:20:35
直接暴力模拟即可
#include <iostream> using namespace std; int main () { int n; cin>>n; int ans=1; while (n!=1) { int t=2; while (n%t) { t++; } ans+=t-1; n/=t; } cout<<ans<<endl; }
- 1
信息
- ID
- 1000
- 难度
- 2
- 分类
- (无)
- 标签
- 递交数
- 9
- 已通过
- 2
- 通过率
- 22%
- 上传者