HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Volumes > Array and Matrices > problem:


120. 50329 - Draw Matrix-1

Guest
• Discussion of problem (1)

Volume problems

• 50555 - Frequency of Letters
• 50592 - Matrix Multiplication
• 50653 - Long Divide
• 50767 - Censor
• 50792 - The student with the highest...
• 060. 50389 - Reverse an Array
• 100. 50330 - Find the average of n ...
• 110. 50359 - Mode of a Series
• 120. 50329 - Draw Matrix-1
• 120. 50331 - Number of Numbers o...
• 155. 50726 - Pascal Triangle - 1
• 180. 50755- Top N Donors - 1
• 190. 50734 - Product Info (In Srt)
• 200. 50290 - Minimax Sum
• 50332 - Variance of a series
• 50687 - Pascal Triangle - 2
• 50342 - 100 Factorial

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Prepared by Ibrahim Mesecan. Difficulty Beta

DRAW MATRIX 1

Write a program that asks for a number n and then draws n*n matrice which is completely filled with ones and zeros like this:
Sample Run 1:
n-->3 // the number we get from the input file is 3
1 1 1
1 0 1
1 1 1

Input specification
There is just one number (n) in the input file showing the size of matrix. 1 ≤ n ≤ 20.

Output specification
The outer most square will be filled with ones. Then, every inner line with zeros and ones following each other.
Give a space after every digit.
Sample Run2:
n-->5 // the number we get from the input file is 5
1 1 1 1 1
1 0 0 0 1
1 0 1 0 1
1 0 0 0 1
1 1 1 1 1

Sample Run3:
n-->6 // the number we get from the input file is 6
1 1 1 1 1 1
1 0 0 0 0 1
1 0 1 1 0 1
1 0 1 1 0 1
1 0 0 0 0 1
1 1 1 1 1 1

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

www.contester.ru