| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 1 초 | 1024 MB | 54 | 40 | 40 | 81.633% |
Word searches are hard. Luckily, you're a programmer, so you can just write a program to find the words! Fortunately, the word searches that you are doing are only looking for one word, and that word is "word". Write a program that finds the number of instances of the word "word" in a word search.
The first line will contain a single integer n that indicates the number of data sets that follow. Each data set will start with two integers, r c with r being the number of rows and c being the number of columns, respectively. The next r lines will contain c random letters, creating a word search grid.
Output the number of times that the word "word" appears in the word search. The letters can be going in any direction, including backwards.
2 4 4 word aoah nerd qpid 4 4 sowk dyuf asaf diub
2 0
School > PLU High School Programming Contest > PLU 2020 > Novice 6번