| Task: | Lehmät | 
| Sender: | Tomppa | 
| Submission time: | 2022-10-31 16:03:13 +0200 | 
| Language: | C++ (C++17) | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | WRONG ANSWER | 0 | 
| #2 | WRONG ANSWER | 0 | 
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #2 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #3 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #4 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #5 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #6 | WRONG ANSWER | 0.00 s | 2 | details | 
| #7 | WRONG ANSWER | 0.00 s | 2 | details | 
| #8 | WRONG ANSWER | 0.00 s | 2 | details | 
| #9 | WRONG ANSWER | 0.00 s | 2 | details | 
Code
#include <bits/stdc++.h>
using namespace std;
int main() {
    int leveys, korkeus;
    cin >> korkeus >> leveys;
    char kentta[korkeus][leveys];
    int ax = 0, ay = 0;
    bool found = false;
    for (int y = 0; y < korkeus; y++)
    {
        for (int x = 0; x < leveys; x++)
        {
            cin >> kentta[y][x];
            if(!found && kentta[y][x] == '*') {
                found = true;
                ax = x;
                ay = y;
            }
        }
    }
    int w = 0, h = 0;
    for (w = ax; w < leveys; w++)
    {
        if(kentta[ay][w] != '*') {
            w--;
            break;
        }
    }
    for (h = ay; h < korkeus; h++)
    {
        if(kentta[h][ax] != '*') {
            h--;
            break;
        }
    }
    cout << "w: " << w << "     h: " << h << endl;
    int lehmat = 0;
    for (int i = ay+1; i < h; i++)
    {
        for (int j = ax+1; j < w; j++)
        {
            if(kentta[i][j] == '@') {
                lehmat++;
            }
        }
    }
    cout << lehmat;
}Test details
Test 1
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 3 3 *** *.* ***  | 
| correct output | 
|---|
| 0 | 
| user output | 
|---|
| w: 3     h: 3 0  | 
Test 2
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 3 3 *** *@* ***  | 
| correct output | 
|---|
| 1 | 
| user output | 
|---|
| w: 3     h: 3 1  | 
Test 3
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 5 10 ...@...... ..******.. @.*@@@@*.@ ..******.. ...  | 
| correct output | 
|---|
| 4 | 
| user output | 
|---|
| w: 7     h: 3 4  | 
Test 4
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 10 10 @@...@.@@@ ..@@.@@..@ @.*******@ ..*@....*. ...  | 
| correct output | 
|---|
| 11 | 
| user output | 
|---|
| w: 8     h: 8 11  | 
Test 5
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 10 10 ********** *@@@@@@@@* *@@@@@@@@* *@@@@@@@@* ...  | 
| correct output | 
|---|
| 64 | 
| user output | 
|---|
| w: 10     h: 10 64  | 
Test 6
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 .........................@.......  | 
| correct output | 
|---|
| 60 | 
| user output | 
|---|
| w: 91     h: 93 60  | 
Test 7
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 ..@@..........@......@....@@.....  | 
| correct output | 
|---|
| 1507 | 
| user output | 
|---|
| w: 94     h: 94 1507  | 
Test 8
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 .@..@@..@@.@..@..@..@@..@..@.....  | 
| correct output | 
|---|
| 3348 | 
| user output | 
|---|
| w: 94     h: 91 3348  | 
Test 9
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...  | 
| correct output | 
|---|
| 7225 | 
| user output | 
|---|
| w: 91     h: 94 7225  | 
