| Task: | Lehmät | 
| Sender: | Savuisaa | 
| Submission time: | 2022-11-02 18:54:55 +0200 | 
| Language: | Python3 (CPython3) | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | WRONG ANSWER | 0 | 
| #2 | WRONG ANSWER | 0 | 
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.02 s | 1, 2 | details | 
| #2 | ACCEPTED | 0.02 s | 1, 2 | details | 
| #3 | ACCEPTED | 0.02 s | 1, 2 | details | 
| #4 | WRONG ANSWER | 0.02 s | 1, 2 | details | 
| #5 | ACCEPTED | 0.02 s | 1, 2 | details | 
| #6 | WRONG ANSWER | 0.02 s | 2 | details | 
| #7 | WRONG ANSWER | 0.02 s | 2 | details | 
| #8 | WRONG ANSWER | 0.02 s | 2 | details | 
| #9 | WRONG ANSWER | 0.02 s | 2 | details | 
Code
n, m = map(int, input().split(" "))
map = []
for i in range(n):
    map.append(input())
row = 0
while row < len(map):
    wall = map[row].find('*')
    if (wall == -1):
       map.remove(map[row])
    row+=1
first = map[len(map) // 2].find('*')
last = map[len(map) // 2].rfind('*')
cows = 0
for row in map:
    row = row[first:last]
    cows += row.count('@')
print(cows)Test details
Test 1
Group: 1, 2
Verdict: ACCEPTED
| input | 
|---|
| 3 3 *** *.* ***  | 
| correct output | 
|---|
| 0 | 
| user output | 
|---|
| 0 | 
Test 2
Group: 1, 2
Verdict: ACCEPTED
| input | 
|---|
| 3 3 *** *@* ***  | 
| correct output | 
|---|
| 1 | 
| user output | 
|---|
| 1 | 
Test 3
Group: 1, 2
Verdict: ACCEPTED
| input | 
|---|
| 5 10 ...@...... ..******.. @.*@@@@*.@ ..******.. ...  | 
| correct output | 
|---|
| 4 | 
| user output | 
|---|
| 4 | 
Test 4
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 10 10 @@...@.@@@ ..@@.@@..@ @.*******@ ..*@....*. ...  | 
| correct output | 
|---|
| 11 | 
| user output | 
|---|
| 15 | 
Test 5
Group: 1, 2
Verdict: ACCEPTED
| input | 
|---|
| 10 10 ********** *@@@@@@@@* *@@@@@@@@* *@@@@@@@@* ...  | 
| correct output | 
|---|
| 64 | 
| user output | 
|---|
| 64 | 
Test 6
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 .........................@.......  | 
| correct output | 
|---|
| 60 | 
| user output | 
|---|
| 64 | 
Test 7
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 ..@@..........@......@....@@.....  | 
| correct output | 
|---|
| 1507 | 
| user output | 
|---|
| 1622 | 
Test 8
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 .@..@@..@@.@..@..@..@@..@..@.....  | 
| correct output | 
|---|
| 3348 | 
| user output | 
|---|
| 3721 | 
Test 9
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...  | 
| correct output | 
|---|
| 7225 | 
| user output | 
|---|
| 7741 | 
