CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:eerosahlberg
Submission time:2022-10-31 08:24:26 +0200
Language: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

inp =  input()
n = int(inp.split()[0])
m = int(inp.split()[1])

amount = 0
for i in range(0, n):
    row = input()
    if(row.count('*') == 0 or row.count('*') > 2):
        continue
    else:
        started = False
        for char in row:
            print(char)
            if(char == '*' and started == False):
                started = True
  
            elif(started and char == '@'):
                amount += 1

            elif(started and char == '*'):

                break


print(amount)
        

Test details

Test 1

Group: 1, 2

Verdict:

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

correct output
0

user output
*
.
*
0

Test 2

Group: 1, 2

Verdict:

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

correct output
1

user output
*
@
*
1

Test 3

Group: 1, 2

Verdict:

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

correct output
4

user output
@
.
*
@
@
...

Test 4

Group: 1, 2

Verdict:

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

correct output
11

user output
.
.
*
@
.
...
Truncated

Test 5

Group: 1, 2

Verdict:

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

correct output
64

user output
*
@
@
@
@
...
Truncated

Test 6

Group: 2

Verdict:

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

correct output
60

user output
.
.
.
.
.
...
Truncated

Test 7

Group: 2

Verdict:

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

correct output
1507

user output
.
.
.
@
.
...
Truncated

Test 8

Group: 2

Verdict:

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

correct output
3348

user output
.
.
.
@
.
...
Truncated

Test 9

Group: 2

Verdict:

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

correct output
7225

user output
@
@
@
@
@
...
Truncated