#P3410. Chessboard and Queens

Chessboard and Queens

当前没有测试数据。

Description

Your task is to place eight queens on a chessboard so that no two queens are attacking each other. As an additional challenge, each square is either free or reserved, and you can only place queens on the free squares. However, the reserved squares do not prevent queens from attacking each other.

How many possible ways are there to place the queens?

Input Format

The input has eight lines, and each of them has eight characters. Each square is either free (.) or reserved (*).

Output Format

Print one integer: the number of ways you can place the queens.
........
........
..*.....
........
........
.....**.
...*....
........
65

Hint

Source

CSES