ГлавнаяСборникиТурнирыРазделыФорумыУчастникиПечатьПомощьО системе

Сборники > Problems from everywhere > задача:


TopCoder-7. 50244 - Chessboard Pattern

Гость
• Обсуждение задачи (1)

Задачи сборника

• KBH-1012. 50617 - КВН
• KBH-1013. 50618 - Коррекция кода
• TopCoder-1. 50761 - Magic Words
• TopCoder-2. 50246 - Making Potions
• TopCoder-3. 50245 - Santa Gifts
• TopCoder-4. 50701 - Cell Removal
• TopCoder-5. 50760 - Hexatridecimal...
• TopCoder-6. 50759 - Text Statistics
• TopCoder-7. 50244 - Chessboar...
• TopCoder-8. 50641 - Strong Prime ...
• VologdaInterCity-A. 50614 - Игра в...
• VologdaInterCity-B. 50632 - Снова ...
• VologdaInterCity-C. 50646 - Чем бо...
• VologdaInterCity-D. 50605 - За реш...
• VologdaInterCity-E. 50624 - Проста...
• VologdaInterUni-A. 50628 - Матрица
• VologdaInterUni-B. 2 ->10

Обратная связь

Если у вас есть предложения или пожелания по работе Contester, посетите форум сайта www.contester.ru.

Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Сложность Альфа

A chessboard pattern is a pattern that satisfies the following conditions:

• The pattern has a rectangular shape.
• The pattern contains only the characters '.' (a dot) and 'X' (an uppercase letter X).
• No two symbols that are horizontally or vertically adjacent are the same.
• The symbol in the lower left corner of the pattern is '.' (a dot).

You are given two numbers. N is a number of rows and M is a number of columns. Write a program that generates the chessboard pattern with these dimensions, and outputs it.

Input
The first line contains two numbers N and M (1 ≤ N ≤ 50, 1 ≤ M ≤ 50) separated by a whitespace.
Output
Output should contain N lines each containing M symbols that correspond to the generated pattern. Specifically, the first character of the last row of the output represents the lower left corner (see example 1).

Input 1 Input 2 Input 3
8 8
3 1
1 20
Output 1 Output 2 Output 3
X.X.X.X.
.X.X.X.X
X.X.X.X.
.X.X.X.X
X.X.X.X.
.X.X.X.X
X.X.X.X.
.X.X.X.X
.
X
.
.X.X.X.X.X.X.X.X.X.X

Для отправки решений необходимо выполнить вход.

www.contester.ru