Task: | Lehmät |
Sender: | MariaWiik |
Submission time: | 2022-11-02 10:45:57 +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.02 s | 2 | details |
#7 | WRONG ANSWER | 0.02 s | 2 | details |
#8 | WRONG ANSWER | 0.03 s | 2 | details |
#9 | WRONG ANSWER | 0.02 s | 2 | details |
Code
from random import randintnM = 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 3x3pCol = 3#randint(3, n)pRow = 3#randint(3, m)#print(pn, pm)# coordinates of penpActualCol = 1#randint(0, n - pn)pActualRow = 1#randint(0, m - pm)#print(pAn, pAm)# number of cowsnumCows = 5CowsInside = 0# position of the cowscowPosition = [(0, 0), (2, 2)]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 matrixfor 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 35, 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 35, 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 |