CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:MariaWiik
Submission time:2022-11-02 14:43:28 +0200
Language:Python3 (CPython3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#1ACCEPTED0.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

nM = input()
nums = nM.split()
n = int(nums[0])
m = int(nums[1])
area = [["." for c in range(m)] for r in range(n)]
if n < 4 and m < 8:
print(0)
exit()
# pen
pCol = 4
pRow = 8
# coordinates of pen
pActualCol = 1
pActualRow = 2
# number of cows
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: 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
. . . . . . . . . @ 
@ . * * * * * * * . 
. . * . @ . @ . * . 
. @ * . @ @ @ @ * . 
. . * 
...
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