[Rqnoj-377]A*B Problem

A*B Problem
高精度压位,不解释。。

type
    hp=array[0..15000] of longint;
var
   a,b,ans:hp;
procedure h_cheng(a,b:hp;var c:hp);
var
   i,j,len:longint;
begin
     len:=a[0]+b[0];
     fillchar(c,sizeof(c),0);
     for i:=1 to a[0] do
     for j:=1 to b[0] do begin
         c[i+j-1]:=c[i+j-1]+a[i]*b[j];
         c[i+j]:=c[i+j]+c[i+j-1] div 10000;
         c[i+j-1]:=c[i+j-1] mod 10000;
     end;
     while (c[len]=0)and(len>1) do dec(len); c[0]:=len;
end;
procedure print(a:hp);
var
   i:longint;
begin
     write(a[a[0]]);
     for i:=a[0]-1 downto 1 do begin
         if a[i] div 1000=0 then write(0);
         if a[i] div 100 =0 then write(0);
         if a[i] div 10  =0 then write(0);
         write(a[i]);
     end;
end;
procedure main;
var
   i,n:longint;
   c:char;
begin
     readln(n);
     fillchar(a,sizeof(a),0);
     a[0]:=(n-1)div 4+1;
     for i:=1 to n do begin
         read(c);
         a[(n-i+1-1)div 4+1]:=a[(n-i+1-1)div 4+1]*10+ord(c)-ord('0');
     end; readln;
     fillchar(b,sizeof(b),0);
     b[0]:=(n-1)div 4+1;
     for i:=1 to n do begin
         read(c);
         b[(n-i+1-1)div 4+1]:=b[(n-i+1-1)div 4+1]*10+ord(c)-ord('0');
     end; readln;
     h_cheng(a,b,ans);
     print(ans);
end;
begin
     main;
end.


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值