记录编号 19095 评测结果 AAAAAAAAAA
题目名称 [NOI 2000]青蛙过河 最终得分 100
用户昵称 Gravatar1102 是否通过 通过
代码语言 Pascal 运行时间 0.003 s
提交时间 2010-09-28 20:35:35 内存使用 0.17 MiB
显示代码纯文本
program xxxx;
var s,y,x,m,i:longint;
begin
  assign(input,'frog.in');
  reset(input);
  assign(output,'frog.out');
  rewrite(output);
  read(s,y);
  m:=1;
  for i:=1 to s do
    m:=m*2;
  x:=(y+1)*m;
  write(x);
  close(input);
  close(output);
end.