Task: | Lehmät |
Sender: | MariaWiik |
Submission time: | 2022-11-02 14:12:27 +0200 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.02 s | 1, 2 | details |
#2 | RUNTIME ERROR | 0.02 s | 1, 2 | details |
#3 | WRONG ANSWER | 0.02 s | 1, 2 | details |
#4 | WRONG ANSWER | 0.02 s | 1, 2 | details |
#5 | WRONG ANSWER | 0.02 s | 1, 2 | details |
#6 | WRONG ANSWER | 0.03 s | 2 | details |
#7 | WRONG ANSWER | 0.03 s | 2 | details |
#8 | WRONG ANSWER | 0.03 s | 2 | details |
#9 | WRONG ANSWER | 0.03 s | 2 | details |
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 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: RUNTIME ERROR
input |
---|
3 3 *** *.* *** |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> a...
Test 2
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
3 3 *** *@* *** |
correct output |
---|
1 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> a...
Test 3
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
5 10 ...@...... ..******.. @.*@@@@*.@ ..******.. ... |
correct output |
---|
4 |
user output |
---|
. . . . . . . . . @ @ . * * * * * * * . . . * . @ . @ . * . . @ * . @ @ @ @ * . . . * ... Truncated |
Test 4
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
10 10 @@...@.@@@ ..@@.@@..@ @.*******@ ..*@....*. ... |
correct output |
---|
11 |
user output |
---|
. . . . . . . . . @ @ . * * * * * * * . . . * . @ . @ . * . . @ * . @ @ @ @ * . . . * ... Truncated |
Test 5
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
10 10 ********** *@@@@@@@@* *@@@@@@@@* *@@@@@@@@* ... |
correct output |
---|
64 |
user output |
---|
. . . . . . . . . @ @ . * * * * * * * . . . * . @ . @ . * . . @ * . @ @ @ @ * . . . * ... Truncated |
Test 6
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 100 .........................@....... |
correct output |
---|
60 |
user output |
---|
. . . . . . . . . @ . . . . . ... Truncated |
Test 7
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 100 ..@@..........@......@....@@..... |
correct output |
---|
1507 |
user output |
---|
. . . . . . . . . @ . . . . . ... Truncated |
Test 8
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 100 .@..@@..@@.@..@..@..@@..@..@..... |
correct output |
---|
3348 |
user output |
---|
. . . . . . . . . @ . . . . . ... Truncated |
Test 9
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 100 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@... |
correct output |
---|
7225 |
user output |
---|
. . . . . . . . . @ . . . . . ... Truncated |