CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:maijaraulo
Submission time:2022-11-02 20:45:39 +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

nro=input().split(" ")
(n,m)=(int(jee) for jee in (nro))
#print(n)
#print(m)
mjonot=[]
for i in range(n):
mjonot.append(input())
#mjonot=[".........@","@.*******.","..*.@.@.*.",".@*.@@@@*.","..*******."]
#mjonot=[".***","@*@*",".***","@..@"]
#print(mjonot)
lehmat=0
#rivi=0
#sarake=0
aidan_sisalla=False
for mjono in mjonot:
sarake=0
aidan_sisalla=False
for merkki in mjono:
if merkki == "*":
lol=True
if sarake == 0:
if mjono[sarake+1] == "*":
aidan_sisalla=False
lol=False
if sarake == (len(mjono)-1):
if mjono[sarake-1] == "*":
aidan_sisalla=False
lol=False
if 0 < sarake < (len(mjono)-1):
if mjono[sarake+1] == "*" or mjono[sarake-1] == "*":
aidan_sisalla=False
lol=False
if lol:
aidan_sisalla=True
if merkki == "@":
if aidan_sisalla:
lehmat+=1
sarake+=1
print(lehmat)

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
14

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
3541

Test 9

Group: 2

Verdict:

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

correct output
7225

user output
7905