1754: [Usaco2005 qua]Bull Math

1754: [Usaco2005 qua]Bull Math

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 398  Solved: 242
[Submit][Status][Discuss]

Description

Bulls are so much better at math than the cows. They can multiply huge integers together and get perfectly precise answers ... or so they say. Farmer John wonders if their answers are correct. Help him check the bulls' answers. Read in two positive integers (no more than 40 digits each) and compute their product. Output it as a normal number (with no extra leading zeros). FJ asks that you do this yourself; don't use a special library function for the multiplication. 输入两个数,输出其乘积

Input

* Lines 1..2: Each line contains a single decimal number.

Output

* Line 1: The exact product of the two input lines

Sample Input

11111111111111
1111111111

Sample Output

12345679011110987654321

HINT

 

Source

Gold

 

题解:萌萌哒高精度乘法= =

复制代码
 1 /**************************************************************
 2     Problem: 1754
 3     User: HansBug
 4     Language: Pascal
 5     Result: Accepted
 6     Time:0 ms
 7     Memory:376 kb
 8 ****************************************************************/
 9  
10 var
11    i,j,k,l,m,n:longint;
12    a,b,c:array[0..10000] of longint;
13    s1,s2:ansistring;
14 begin
15      readln(s1);
16      readln(s2);
17      a[0]:=length(s1);
18      for i:=1 to a[0] do a[i]:=ord(s1[a[0]+1-i])-48;
19      b[0]:=length(s2);
20      for i:=1 to b[0] do b[i]:=ord(s2[b[0]+1-i])-48;
21      c[0]:=a[0]+b[0];
22      for i:=1 to a[0] do
23          for j:=1 to b[0] do
24              begin
25                   c[i+j-1]:=c[i+j-1]+a[i]*b[j];
26                   c[i+j]:=c[i+j]+c[i+j-1] div 10;
27                   c[i+j-1]:=c[i+j-1] mod 10;
28              end;
29      while (c[0]>1) and (c[c[0]]=0) do dec(c[0]);
30      for i:=c[0] downto 1 do write(c[i]);
31      writeln;
32      readln;
33 end.     
复制代码

 

posted @   HansBug  阅读(215)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 上周热点回顾(3.3-3.9)
点击右上角即可分享
微信分享提示