| Task: | Lehmät |
| Sender: | Kemm1706 |
| Submission time: | 2022-11-05 18:07:51 +0200 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 100 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 28 |
| #2 | ACCEPTED | 72 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | 1, 2 | details |
| #2 | ACCEPTED | 0.00 s | 1, 2 | details |
| #3 | ACCEPTED | 0.00 s | 1, 2 | details |
| #4 | ACCEPTED | 0.00 s | 1, 2 | details |
| #5 | ACCEPTED | 0.00 s | 1, 2 | details |
| #6 | ACCEPTED | 0.00 s | 2 | details |
| #7 | ACCEPTED | 0.00 s | 2 | details |
| #8 | ACCEPTED | 0.00 s | 2 | details |
| #9 | ACCEPTED | 0.00 s | 2 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:38:15: warning: 'y1' may be used uninitialized in this function [-Wmaybe-uninitialized]
38 | for(j = y1 + 1; j < y2; j++)
| ~~^~~~~~~~
input/code.cpp:37:11: warning: 'x1' may be used uninitialized in this function [-Wmaybe-uninitialized]
37 | for(i = x1 + 1; i < x2; i++)
| ~~^~~~~~~~
input/code.cpp:38:27: warning: 'y2' may be used uninitialized in this function [-Wmaybe-uninitialized]
38 | for(j = y1 + 1; j < y2; j++)
| ~~^~~~
input/code.cpp:37:23: warning: 'x2' may be used uninitialized in this function [-Wmaybe-uninitialized]
37 | for(i = x1 + 1; i < x2; i++)
| ~~^~~~Code
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
int main()
{
int m, n, i, j, x1, x2, y1, y2, ans = 0;
cin >> m >> n;
char c[m][n];
for(i = 0; i < m; i++)
for(j = 0; j < n; j++)
cin >> c[i][j];
for(i = 0; i < m; i++)
{
for(j = 0; j < n; j++)
if(c[i][j] == '*')
{
x1 = i;
y1 = j;
break;
}
if(j < n)
break;
}
for(i = m - 1; i >= 0; i--)
{
for(j = n - 1; j >= 0; j--)
if(c[i][j] == '*')
{
x2 = i;
y2 = j;
break;
}
if(j >= 0)
break;
}
for(i = x1 + 1; i < x2; i++)
for(j = y1 + 1; j < y2; j++)
if(c[i][j] == '@')
ans++;
cout << ans;
return 0;
}
Test details
Test 1
Group: 1, 2
Verdict: ACCEPTED
| input |
|---|
| 3 3 *** *.* *** |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 2
Group: 1, 2
Verdict: ACCEPTED
| input |
|---|
| 3 3 *** *@* *** |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
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: ACCEPTED
| input |
|---|
| 10 10 ********** *@@@@@@@@* *@@@@@@@@* *@@@@@@@@* ... |
| correct output |
|---|
| 64 |
| user output |
|---|
| 64 |
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 |
