CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:Anotn
Submission time:2022-11-02 20:10:12 +0200
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.03 s1, 2details
#20.03 s1, 2details
#30.03 s1, 2details
#40.03 s1, 2details
#50.03 s1, 2details
#60.03 s2details
#70.03 s2details
#80.04 s2details
#90.04 s2details

Code

import re
rng = str(input())
rng = rng.split()
print(rng[0],rng[1])
var = ""
lc = 0

for l in range(int(rng[0])):
    var = input()
    for b in range(int(rng[1])):
        if var[b] == '@':
            if bool(re.search('[*]',var[0:b])) & bool(re.search('[*]',var[b:])):
                lc = lc + 1
print(lc)

Test details

Test 1

Group: 1, 2

Verdict:

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

correct output
0

user output
3 3
0

Test 2

Group: 1, 2

Verdict:

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

correct output
1

user output
3 3
1

Test 3

Group: 1, 2

Verdict:

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

correct output
4

user output
5 10
4

Test 4

Group: 1, 2

Verdict:

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

correct output
11

user output
10 10
11

Test 5

Group: 1, 2

Verdict:

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

correct output
64

user output
10 10
64

Test 6

Group: 2

Verdict:

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

correct output
60

user output
100 100
60

Test 7

Group: 2

Verdict:

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

correct output
1507

user output
100 100
1507

Test 8

Group: 2

Verdict:

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

correct output
3348

user output
100 100
3348

Test 9

Group: 2

Verdict:

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

correct output
7225

user output
100 100
7225