CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:nmjuko
Submission time:2022-10-31 00:57:05 +0200
Language:Python3 (CPython3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#1ACCEPTED0.02 s1, 2details
#2ACCEPTED0.02 s1, 2details
#30.02 s1, 2details
#40.02 s1, 2details
#5ACCEPTED0.02 s1, 2details
#60.02 s2details
#70.02 s2details
#80.02 s2details
#90.02 s2details

Code

n = input()
splited_n = n.split()
hight = int(splited_n[0])
width = int(splited_n[1])
cows = 0
fence_started = False
for i in range(0, hight):
row = input()
try:
row.index("**")
if fence_started:
fence_started = False
break
else:
fence_started = True
except:
pass
if fence_started:
counting = False
for mark in row:
if mark == "*":
counting = True
elif counting:
if mark == "*":
break
elif mark == "@":
cows += 1
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:

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

correct output
4

user output
5

Test 4

Group: 1, 2

Verdict:

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:

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

correct output
60

user output
65

Test 7

Group: 2

Verdict:

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

correct output
1507

user output
1576

Test 8

Group: 2

Verdict:

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

correct output
3348

user output
3542

Test 9

Group: 2

Verdict:

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

correct output
7225

user output
7913