比赛 防止颓废的小练习v0.1 评测结果 AAAAAAAAAA
题目名称 质因数分解 最终得分 100
用户昵称 男孩依旧 运行时间 0.006 s
代码语言 Pascal 内存使用 0.17 MiB
提交时间 2016-10-17 13:57:46
显示代码纯文本
program prime;
var
k,p,q,n:int64;
i,j:longint;
f:boolean;
begin
assign(input,'prime.in');reset(input);
assign(output,'prime.out');rewrite(output);
readln(n);
k:=n;
for i:=2 to trunc(sqrt(n)) do
begin
if n mod i= 0 then
begin
n:=n div i;
for j:=2 to trunc(sqrt(i)) do
if i mod j =0 then f:=true;
if f=false then
writeln( k div i);
end; end;
close(input);close(output);
end.