top of page

CCC 2019 J2 - Time to Decompress

Updated: Jul 21, 2020

This is an implementation question.

Solution:

Input the pair parameters n and x, print n number x.


def decode(n, x):
    print(n*x)

m = int(input())
for i in range(m):
    sr = input().split()
    nn = int(sr[0])
    xx = sr[1]
    decode(nn, xx)

Recent Posts

See All

Comments


bottom of page