列表

详情


NC202488. 累乘数字

描述

我们知道将一个大于1的数乘以另一个大于1的数会使乘积大于任意一个乘数。
现在给出两个数字 n, d,你能否计算将n乘以d次100的结果。

输入描述

多组输入
每组输入在一行中给出

输出描述

每组输入输出一行代表答案。

示例1

输入:

5 1
11 1
85 2

输出:

500
1100
850000

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

pypy3(pypy3.6.1) 解法, 执行用时: 357ms, 内存消耗: 25480K, 提交时间: 2020-02-26 00:22:36

while True:
	try:
		a,b=map(int,input().split())
		
		while b!=0:
			a*=100
			b-=1
		print(a)
	except:
		break

Python3(3.5.2) 解法, 执行用时: 83ms, 内存消耗: 4580K, 提交时间: 2020-02-26 01:10:56

try:
	while True:
		n,d=input().split();print(n+"00"*int(d))
except:pass

上一题