| Task: | Lehmät |
| Sender: | someprogrammer |
| Submission time: | 2022-11-06 21:34:13 +0200 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.02 s | 1, 2 | details |
| #2 | WRONG ANSWER | 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.02 s | 2 | details |
| #9 | WRONG ANSWER | 0.02 s | 2 | details |
Code
if __name__=="__main__":
n, m = (int(x) for x in str(input()).split(" "))
lines = []
for i in range(n):
lines.append(str(input()))
count = 0
while "*" not in lines[count]:
count += 1
count += 1
x_start = lines[count].find("*")+1
x_end = lines[count][x_start:].find("*")+x_start
sum_thing = 0
for line in lines[count:]:
thing = line[x_start:x_end]
if line[0] == "*":
break
for j in range(len(thing)):
if thing[j] == "@":
sum_thing += 1
print(sum_thing)
Test details
Test 1
Group: 1, 2
Verdict: ACCEPTED
| input |
|---|
| 3 3 *** *.* *** |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 2
Group: 1, 2
Verdict: WRONG ANSWER
| input |
|---|
| 3 3 *** *@* *** |
| correct output |
|---|
| 1 |
| user output |
|---|
| 0 |
Test 3
Group: 1, 2
Verdict: WRONG ANSWER
| input |
|---|
| 5 10 ...@...... ..******.. @.*@@@@*.@ ..******.. ... |
| correct output |
|---|
| 4 |
| user output |
|---|
| 5 |
Test 4
Group: 1, 2
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 @@...@.@@@ ..@@.@@..@ @.*******@ ..*@....*. ... |
| correct output |
|---|
| 11 |
| user output |
|---|
| 13 |
Test 5
Group: 1, 2
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 ********** *@@@@@@@@* *@@@@@@@@* *@@@@@@@@* ... |
| correct output |
|---|
| 64 |
| user output |
|---|
| 0 |
Test 6
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 .........................@....... |
| correct output |
|---|
| 60 |
| user output |
|---|
| 68 |
Test 7
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 ..@@..........@......@....@@..... |
| correct output |
|---|
| 1507 |
| user output |
|---|
| 1604 |
Test 8
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 .@..@@..@@.@..@..@..@@..@..@..... |
| correct output |
|---|
| 3348 |
| user output |
|---|
| 3679 |
Test 9
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@... |
| correct output |
|---|
| 7225 |
| user output |
|---|
| 7650 |
