CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:JupeOwl
Submission time:2022-10-31 09:41:09 +0200
Language:Python3 (CPython3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.02 s1, 2details
#20.02 s1, 2details
#30.02 s1, 2details
#40.02 s1, 2details
#50.02 s1, 2details
#60.02 s2details
#70.02 s2details
#80.02 s2details
#90.02 s2details

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:

input
3 3
***
*.*
***

correct output
0

user output
[['*', '*', '*'], ['*', '.', '...

Test 2

Group: 1, 2

Verdict:

input
3 3
***
*@*
***

correct output
1

user output
[['*', '*', '*'], ['*', '@', '...

Test 3

Group: 1, 2

Verdict:

input
5 10
...@......
..******..
@.*@@@@*.@
..******..
...

correct output
4

user output
[['.', '.', '.', '@', '.', '.'...
Truncated

Test 4

Group: 1, 2

Verdict:

input
10 10
@@...@.@@@
..@@.@@..@
@.*******@
..*@....*.
...

correct output
11

user output
[['@', '@', '.', '.', '.', '@'...
Truncated

Test 5

Group: 1, 2

Verdict:

input
10 10
**********
*@@@@@@@@*
*@@@@@@@@*
*@@@@@@@@*
...

correct output
64

user output
[['*', '*', '*', '*', '*', '*'...
Truncated

Test 6

Group: 2

Verdict:

input
100 100
.........................@.......

correct output
60

user output
[['.', '.', '.', '.', '.', '.'...
Truncated

Test 7

Group: 2

Verdict:

input
100 100
..@@..........@......@....@@.....

correct output
1507

user output
[['.', '.', '@', '@', '.', '.'...
Truncated

Test 8

Group: 2

Verdict:

input
100 100
.@..@@..@@.@..@..@..@@..@..@.....

correct output
3348

user output
[['.', '@', '.', '.', '@', '@'...
Truncated

Test 9

Group: 2

Verdict:

input
100 100
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...

correct output
7225

user output
[['@', '@', '@', '@', '@', '@'...
Truncated