Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Question by Ibrahim Mesecan.
esreveR Triangle
Draw a reverse triangle with the given size (n)
and given chars. When drawing the triangle, at
the beginning of everyline, give some space, such that
- the first line will have n-1 space and then 1 char
- the second line will have n-2 spaces and then 2 chars
- the third line will have n-3 spaces and then 3 chars
- etc.
Then, every line starts with the first char and
it's followed by the second, and so on.
Question:
Write a program, that is going to take the size of
triangle and two chars. And draw the described triangle.
Input specification
You will be given one integer (n) and two chars
0 ≤ n ≤ 100. The chars are 26 uppercase or lowercase
English characters.
Output specification
Draw the described triable.
Sample Input I
5 b n
|
Sample Input II
7 x t
|
Sample Output I
b
bn
bnb
bnbn
bnbnb
|
Sample Output II
x
xt
xtx
xtxt
xtxtx
xtxtxt
xtxtxtx
|
Для отправки решений необходимо выполнить вход.
|