比赛 20140713上午练习 评测结果 MMMMMMMMMM
题目名称 A类B类数 最终得分 0
用户昵称 Konan 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2014-07-13 10:10:44
显示代码纯文本
program  cc(input,output);
var
a:array[1..99999999]of longint;
i,x1,x0,xa,xb,j,n,h,q:longint;
begin
assign(input,'abnum.in');
assign(output,'abnum.out');
reset(input);
rewrite(output);
read(n);
for i:=1 to n do
begin
repeat
inc(j);
a[j]:=i mod 2;
h:=h div 2;
until h=0;
for q:=1 to j do
begin
if a[q]=0 then x0:=x0+1 else x1:=x1+1;
if x1>x0 then xa:=xa+1 else xb:=xb+1;
end;
x1:=0;
x0:=0;
j:=0;
end;
writeln(xa,' ',xb);
close(input);
close(output);
end.