fork download
  1. #(max_emax)
  2. from decimal import *
  3. getcontext().prec = 100
  4. from decimal import localcontext
  5. with localcontext() as ctx:
  6. ctx.Emax = 10 ** 10 ** 5 # 指数上限を増やす
  7. s = ctx.power(10,100000)
  8. t = (10 ** s)
Success #stdin #stdout 0.12s 67252KB
stdin
Standard input is empty
stdout
Standard output is empty