比赛 小练习赛:A组 评测结果 AAAAAAAAAA
题目名称 约数问题 最终得分 100
用户昵称 helloworld123 运行时间 0.004 s
代码语言 Pascal 内存使用 0.15 MiB
提交时间 2014-10-21 19:59:28
显示代码纯文本
  1. program cogs1757;
  2. var
  3. i,j:longint;
  4. n:longint;
  5. begin
  6. assign(input,'pian_fen.in'); reset(input);
  7. assign(output,'pian_fen.out'); rewrite(output);
  8. readln(n);
  9. writeln('No!');
  10. close(input); close(output);
  11. end.