CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:Hervanta
Submission time:2022-11-01 01:35:05 +0200
Language:PyPy3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#1ACCEPTED0.06 s1, 2details
#20.06 s1, 2details
#30.06 s1, 2details
#40.06 s1, 2details
#50.06 s1, 2details
#60.06 s2details
#70.06 s2details
#80.06 s2details
#90.06 s2details

Code

import re

input = str(input())

lines = input.split("\n")
cowAmount = 0

for line in lines:
    if lines.index(line) != 0 and lines.index(line) != len(lines):
        match = re.findall(r"\*+[@\.]+\*+", line)
        if len(match) > 0:
            cowAmount += match[0].count("@")
        
print(cowAmount)

Test details

Test 1

Group: 1, 2

Verdict: ACCEPTED

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

correct output
0

user output
0

Test 2

Group: 1, 2

Verdict:

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

correct output
1

user output
0

Test 3

Group: 1, 2

Verdict:

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

correct output
4

user output
0

Test 4

Group: 1, 2

Verdict:

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

correct output
11

user output
0

Test 5

Group: 1, 2

Verdict:

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

correct output
64

user output
0

Test 6

Group: 2

Verdict:

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

correct output
60

user output
0

Test 7

Group: 2

Verdict:

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

correct output
1507

user output
0

Test 8

Group: 2

Verdict:

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

correct output
3348

user output
0

Test 9

Group: 2

Verdict:

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

correct output
7225

user output
0