2020-03-25 12:08:18 +08:00

20 lines
457 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# R进制高精度乘法
题目描述
  计算R2<=R<=36进制下两个高精度数的乘法这两个数的位数均不超过100位并输出结果R进制A=10B=11C=12......Z=35输入输出中涉及到的英文字母均为大写格式字母。
输入输出格式
输入格式:
  三行第一行R。第二、三行分别为用字符串表达的两个高精度数。
输出格式:
  一行,结果值。
输入输出样例
输入样例#1
8
3
3
输出样例#1
11
提示信息
  直接以R进制进位进行运算。