| Task: | Lehmät | 
| Sender: | JupeOwl | 
| Submission time: | 2022-10-31 09:41:09 +0200 | 
| Language: | Python3 (CPython3) | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | WRONG ANSWER | 0 | 
| #2 | WRONG ANSWER | 0 | 
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.02 s | 1, 2 | details | 
| #2 | WRONG ANSWER | 0.02 s | 1, 2 | details | 
| #3 | WRONG ANSWER | 0.02 s | 1, 2 | details | 
| #4 | WRONG ANSWER | 0.02 s | 1, 2 | details | 
| #5 | WRONG ANSWER | 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
nums = input().split(" ")
strings = []
while int(nums[0]) > 0:
    tempInput = strings.append([*input()])   
    nums[0] = int(nums[0]) - 1
cows = 0;
for row in strings:
    walls = 0;
    for char in row:
        if char == "*":
            walls += 1
    if walls == 0:
        continue
    elif walls == 2:
        insideWalls = False;
        for char in row:
            if insideWalls:
                if char == "@":
                    cows += 1
                elif char == "*":
                    insideWalls = False
            else:
                if char == "*":
                    insideWalls = True
    else:
        continue
print(strings)
print(cows)
Test details
Test 1
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 3 3 *** *.* ***  | 
| correct output | 
|---|
| 0 | 
| user output | 
|---|
| [['*', '*', '*'], ['*', '.', '... | 
Test 2
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 3 3 *** *@* ***  | 
| correct output | 
|---|
| 1 | 
| user output | 
|---|
| [['*', '*', '*'], ['*', '@', '... | 
Test 3
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 5 10 ...@...... ..******.. @.*@@@@*.@ ..******.. ...  | 
| correct output | 
|---|
| 4 | 
| user output | 
|---|
| [['.', '.', '.', '@', '.', '.'... Truncated  | 
Test 4
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 10 10 @@...@.@@@ ..@@.@@..@ @.*******@ ..*@....*. ...  | 
| correct output | 
|---|
| 11 | 
| user output | 
|---|
| [['@', '@', '.', '.', '.', '@'... Truncated  | 
Test 5
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 10 10 ********** *@@@@@@@@* *@@@@@@@@* *@@@@@@@@* ...  | 
| correct output | 
|---|
| 64 | 
| user output | 
|---|
| [['*', '*', '*', '*', '*', '*'... Truncated  | 
Test 6
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 .........................@.......  | 
| correct output | 
|---|
| 60 | 
| user output | 
|---|
| [['.', '.', '.', '.', '.', '.'... Truncated  | 
Test 7
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 ..@@..........@......@....@@.....  | 
| correct output | 
|---|
| 1507 | 
| user output | 
|---|
| [['.', '.', '@', '@', '.', '.'... Truncated  | 
Test 8
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 .@..@@..@@.@..@..@..@@..@..@.....  | 
| correct output | 
|---|
| 3348 | 
| user output | 
|---|
| [['.', '@', '.', '.', '@', '@'... Truncated  | 
Test 9
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...  | 
| correct output | 
|---|
| 7225 | 
| user output | 
|---|
| [['@', '@', '@', '@', '@', '@'... Truncated  | 
