CF275A.Lights Out
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Lenny is playing a game on a 3×3 grid of lights. In the beginning of the game all lights are switched on. Pressing any of the lights will toggle it and all side-adjacent lights. The goal of the game is to switch all the lights off. We consider the toggling as follows: if the light was switched on then it will be switched off, if it was switched off then it will be switched on.
Lenny has spent some time playing with the grid and by now he has pressed each light a certain number of times. Given the number of times each light is pressed, you have to print the current state of each light.
输入格式
The input consists of three rows. Each row contains three integers each between 0 to 100 inclusive. The j -th number in the i -th row is the number of times the j -th light of the i -th row of the grid is pressed.
输出格式
Print three lines, each containing three characters. The j -th character of the i -th line is "1" if and only if the corresponding light is switched on, otherwise it's "0".
输入输出样例
输入#1
1 0 0 0 0 0 0 0 1
输出#1
001 010 100
输入#2
1 0 1 8 8 8 2 0 3
输出#2
010 011 100