CF384A.Coder
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Iahub likes chess very much. He even invented a new chess piece named Coder. A Coder can move (and attack) one square horizontally or vertically. More precisely, if the Coder is located at position (x,y) , he can move to (or attack) positions (x+1,y) , (x–1,y) , (x,y+1) and (x,y–1) .
Iahub wants to know how many Coders can be placed on an n×n chessboard, so that no Coder attacks any other Coder.
输入格式
The first line contains an integer n (1<=n<=1000) .
输出格式
On the first line print an integer, the maximum number of Coders that can be placed on the chessboard.
On each of the next n lines print n characters, describing the configuration of the Coders. For an empty cell print an '.', and for a Coder print a 'C'.
If there are multiple correct answers, you can print any.
输入输出样例
输入#1
2
输出#1
2 C. .C