Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
1936 张弛 约数之和 C++ 编译错误 0 0 MS 0 KB 212 2019-11-02 19:18:04

Tests(0/0):


program yueshuhe; var n,i,s:longint; begin writeln('input n:'); readln(n); s:=1; for i:=2 to n do begin if n mod i=0 then s:=s*i; end; write('s=',s); readln end.


测评信息: