Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
42095 董承诺 因子求和 C++ 通过 100 0 MS 248 KB 152 2022-06-23 13:35:28

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int a,b; int main(){ cin>>a; for(int i=2;i<a;i++){ if(a%i==0) b+=i; } cout<<b; return 0; }


测评信息: