300851: CF162G. Non-decimal sum
Memory Limit:256 MB
Time Limit:3 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
G. Non-decimal sumtime limit per test3 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output
You are given an array of integers written in base radix. Calculate their sum and output it written in the same base.
InputThe first line of the input contains an integer n (1 ≤ n ≤ 10) — the size of the array. The second line contains an integer radix (2 ≤ radix ≤ 36) — the base of the numeral system used. Next n lines contain the elements of the array, one per line.
Each element is a non-negative integer written in radix-based notation, possibly with leading zeros, which contains between 1 and 5 digits, inclusive. The digits of the notation will be 0, 1, ..., 9, A, B, ..., Z in the given order.
OutputOutput the sum of array elements in radix-based notation. Use the same format as in the input.
ExamplesInput3Output
16
F0
20B
004
2FFInput
2Output
10
12
34
46