| Task: | Lehmät |
| Sender: | Terror2654 |
| Submission time: | 2022-11-01 21:55:59 +0200 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.06 s | 1, 2 | details |
| #2 | RUNTIME ERROR | 0.06 s | 1, 2 | details |
| #3 | ACCEPTED | 0.04 s | 1, 2 | details |
| #4 | ACCEPTED | 0.04 s | 1, 2 | details |
| #5 | RUNTIME ERROR | 0.07 s | 1, 2 | details |
| #6 | ACCEPTED | 0.04 s | 2 | details |
| #7 | ACCEPTED | 0.05 s | 2 | details |
| #8 | ACCEPTED | 0.05 s | 2 | details |
| #9 | ACCEPTED | 0.05 s | 2 | details |
Code
n,m=map(int,input().split())
cows=0
c = 0
last_line=n-1
pen=[]
for i in range(n):
pen.append(input())
for i in range(0,len(pen)):
if '*' in pen[i]:
last_star=pen[i].rfind('*')
first_star=pen[i].find('*')
first_line=i
break
for i in range(len(pen)):
if '*' in pen[i] and '*' not in pen[i+1]:
last_line=i
for i in range(first_line,last_line):
for j in pen[i][first_star:last_star]:
if j=='@':
cows+=1
print(cows)
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 "input/code.py", line 16, in <module>
if '*'...Test 2
Group: 1, 2
Verdict: RUNTIME ERROR
| input |
|---|
| 3 3 *** *@* *** |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
if '*'...Test 3
Group: 1, 2
Verdict: ACCEPTED
| input |
|---|
| 5 10 ...@...... ..******.. @.*@@@@*.@ ..******.. ... |
| correct output |
|---|
| 4 |
| user output |
|---|
| 4 |
Test 4
Group: 1, 2
Verdict: ACCEPTED
| input |
|---|
| 10 10 @@...@.@@@ ..@@.@@..@ @.*******@ ..*@....*. ... |
| correct output |
|---|
| 11 |
| user output |
|---|
| 11 |
Test 5
Group: 1, 2
Verdict: RUNTIME ERROR
| input |
|---|
| 10 10 ********** *@@@@@@@@* *@@@@@@@@* *@@@@@@@@* ... |
| correct output |
|---|
| 64 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
if '*'...Test 6
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 100 100 .........................@....... |
| correct output |
|---|
| 60 |
| user output |
|---|
| 60 |
Test 7
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 100 100 ..@@..........@......@....@@..... |
| correct output |
|---|
| 1507 |
| user output |
|---|
| 1507 |
Test 8
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 100 100 .@..@@..@@.@..@..@..@@..@..@..... |
| correct output |
|---|
| 3348 |
| user output |
|---|
| 3348 |
Test 9
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 100 100 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@... |
| correct output |
|---|
| 7225 |
| user output |
|---|
| 7225 |
