3117 高精度練習之乘法

2022-05-03 17:15:10 字數 822 閱讀 3446

時間限制: 1 s

空間限制: 128000 kb

題目等級 : ** gold

題解給出兩個正整數a和b,計算a*b的值。保證a和b的位數不超過500位。

輸入描述 input description

讀入兩個用空格隔開的正整數

輸出描述 output description

輸出a*b的值

樣例輸入 sample input

3 12

樣例輸出 sample output

資料範圍及提示 data size & hint

兩個正整數的位數不超過500位

分類標籤 tags 點此展開 

#include#include

#include

#define ref(i,x,y)for(int i=x;i<=y;i++)

#define def(i,x,y)for(int i=x;i>=y;i--)

using

namespace

std;

int lena,lenb,x,a[101000],b[101000],c[101000

];char a1[101000],b1[101000],n[101000

];int

main()

c[lenb+i]=x;

}

int j=lena+lenb;

while(c[j]==0&&j>1) j--;

def(i,j,

1) printf("%d"

,c[i]);

return0;

}

3117 高精度練習之乘法

題目描述 description 給出兩個正整數a和b,計算a b的值。保證a和b的位數不超過500位。輸入描述 input description 讀入兩個用空格隔開的正整數 輸出描述 output description 輸出a b的值 樣例輸入 sample input 3 12 樣例輸出 s...

天梯 高精度 3117 高精度練習之乘法

題目描述 description 給出兩個正整數a和b,計算a b的值。保證a和b的位數不超過500位。輸入描述 input description 讀入兩個用空格隔開的正整數 輸出描述 output description 輸出a b的值 樣例輸入 sample input 3 12 樣例輸出 s...

codevs 3117 高精度練習之乘法

時間限制 1 s 空間限制 128000 kb 題目等級 gold 題解 給出兩個正整數a和b,計算a b的值。保證a和b的位數不超過500位。輸入描述 input description 讀入兩個用空格隔開的正整數 輸出描述 output description 輸出a b的值 樣例輸入 samp...