NC202488. 累乘数字
描述
输入描述
多组输入每组输入在一行中给出 。
输出描述
每组输入输出一行代表答案。
示例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