#873
Bronze I
PEG
시간 제한
1s
메모리 제한
32MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

In the famous logic game Peg, pieces jump over other pieces to remove them from the game, until only one piece is left. Here is the initial layout of the board: ooo ooo ooooooo ooo.ooo ooooooo ooo ooo The lowercase letter 'o' represents a piece, while the character '.' is an empty square. In one move, a player may choose one piece and one of the four main directions (up, down, left, right), if there is another piece in that direction, and an empty square behind it. The chosen piece jumps over the other piece and settles in the empty square behind it, while the piece being jumped over is removed from the game. Write a program that calculates the number of legal moves, given the state of the board.

입력

The board is represented by seven lines containing seven characters each. The first two and last two characters on the first two and last two lines are always spaces, and all remaining characters are either 'o' (lowercase letter) or '.' (period character).

출력

Output the number of legal moves.

예제 입력 1

  ooo  
  ooo  
ooooooo
ooo.ooo
ooooooo
  ooo  
  ooo  

예제 출력 1

4

예제 입력 2

  ooo  
  ooo  
..ooo..
oo...oo
..ooo..
  ooo  
  ooo  

예제 출력 2

12
코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Bronze I1명 투표· 약 1개월 전
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.