比赛 | 20120612 | 评测结果 | AWWWWWWWWW |
---|---|---|---|
题目名称 | 石木游戏 | 最终得分 | 10 |
用户昵称 | wo shi 刘畅 | 运行时间 | 0.000 s |
代码语言 | Pascal | 内存使用 | 0.00 MiB |
提交时间 | 2012-06-12 17:27:46 | ||
var n,t,l,i,now,x,y:longint; begin assign(input,'rocks.in'); reset(input); assign(output,'rocks.out'); rewrite(output); readln(n,t,l); randomize; for i:=1 to n-1 do readln(x,y); for i:=1 to t do readln(x,y); for i:=1 to t do begin now:=random(2); if now=1 then writeln('Yes') else writeln('No'); end; close(input); close(output); end.