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

#nro=input().split(" ")
(n,m)=(int(jee) for jee in (input().split(" ")))
#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:

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

correct output
0

user output
6

Test 2

Group: 1, 2

Verdict:

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

correct output
1

user output
6

Test 3

Group: 1, 2

Verdict:

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

correct output
4

user output
6

Test 4

Group: 1, 2

Verdict:

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

correct output
11

user output
6

Test 5

Group: 1, 2

Verdict:

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

correct output
64

user output
6

Test 6

Group: 2

Verdict:

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

correct output
60

user output
6

Test 7

Group: 2

Verdict:

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

correct output
1507

user output
6

Test 8

Group: 2

Verdict:

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

correct output
3348

user output
6

Test 9

Group: 2

Verdict:

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

correct output
7225

user output
6