比赛 不平凡的世界 评测结果 WWWWWWWWWW
题目名称 不平凡的许愿树 最终得分 0
用户昵称 Ten.X 运行时间 0.007 s
代码语言 Pascal 内存使用 0.17 MiB
提交时间 2015-11-05 11:42:49
显示代码纯文本
  1. var n:longint;
  2. begin
  3. assign(input,'hopetree.in');
  4. assign(output,'hopetree.out');
  5. reset(input);
  6. rewrite(output);
  7. randomize;
  8. read(n);
  9. write(n-1,' ');
  10. write(random(338)+1);
  11. close(input);
  12. close(output);
  13. end.