比赛 20140713下午练习 评测结果 AAAAAAAAAA
题目名称 比特 最终得分 100
用户昵称 sb 运行时间 0.307 s
代码语言 Pascal 内存使用 1.66 MiB
提交时间 2014-07-13 16:41:10
显示代码纯文本
var
n,i,j,m,k,x,y,z,l:longint;
s:array[0..1000000]of integer;
begin
assign(input,'bita.in');
assign(output,'bita.out');
reset(input);
rewrite(output);
read(n);
for i:=1 to n do
begin
z:=0;
while s[z]=1 do
begin
s[z]:=0;
z:=z+1;
if z>m then m:=z;
end;
s[z]:=1;
for j:=0 to m+1 do
begin
if s[j]=1 then x:=x+1
else if x>0 then begin y:=y+x-1; x:=0; end;
end;
end;
write(y);
close(input); close(output);
end.