CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:MariaWiik
Submission time:2022-11-02 11:24:55 +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.03 s2details
#70.03 s2details
#80.03 s2details
#90.03 s2details

Code

from random import randint

nM = input()

nums = nM.split()
n = int(nums[0])
m = int(nums[1])


area = [["." for c in range(m)] for r in range(n)] 


# pen - at least 3x3
pCol = 4
pRow = 8

# coordinates of pen
pActualCol = 1
pActualRow = 2

# number of cows
numCows = 9
CowsInside = 0
# position of the cows
cowPosition = [(1, 0), (0, 9), (2, 4), (2, 6), (3, 1), (3, 4), (3, 5), (3, 6), (3, 7)]

for x, y in cowPosition:
    area[x][y] = "@"

for fillC in range(pActualCol, pCol + 1):
    for fillR in range(pActualRow, pRow + 1):
        
        area[fillC][fillR] = "*"
    

        if (fillC > pActualCol and fillC < pCol) and (fillR > pActualRow and fillR < pRow):
            area[fillC][fillR] = "."

            if(fillC, fillR) in cowPosition:
                area[fillC][fillR] = "@"
                CowsInside += 1



# printing matrix        
for row in area:
    for val in row:
        print(val, end=" ")
    print()

print(CowsInside)

Test details

Test 1

Group: 1, 2

Verdict:

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

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 28, in <module>
    a...

Test 2

Group: 1, 2

Verdict:

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

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 28, in <module>
    a...

Test 3

Group: 1, 2

Verdict:

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

correct output
4

user output
. . . . . . . . . @ 
@ . * * * * * * * . 
. . * . @ . @ . * . 
. @ * . @ @ @ @ * . 
. . * 
...
Truncated

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