状态: Unaccepted
测评机: Xeost[5]
得分: 80分
提交日期: 2009-8-2 10:50:00
有效耗时: 4938毫秒
测试结果1: 通过本测试点|有效耗时203ms
测试结果2: 通过本测试点|有效耗时203ms
测试结果3: 通过本测试点|有效耗时203ms
测试结果4: 通过本测试点|有效耗时688ms
测试结果5: 通过本测试点|有效耗时641ms
测试结果6: 通过本测试点|有效耗时985ms
测试结果7: 选手程序运行超过时限
测试结果8: 通过本测试点|有效耗时1000ms
测试结果9: 选手程序运行超过时限
测试结果10: 通过本测试点|有效耗时1015ms
附程序:
program Q0029;
var n,i,k,t:longint;
begin
readln(t);
for i:=1 to t do
begin
readln(n,k);
if n and k=k then writeln(1) else writeln(0);
end;
end.