| Task: | Lehmät |
| Sender: | Turhake |
| Submission time: | 2022-11-01 18:35:19 +0200 |
| Language: | C++ (C++11) |
| 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 |
Compiler report
input/code.cpp:3:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
3 | main()
| ^~~~
input/code.cpp: In function 'int main()':
input/code.cpp:26:11: warning: 'lehma' may be used uninitialized in this function [-Wmaybe-uninitialized]
26 | cout<<lehma;
| ^~~~~Code
#include <iostream>
using namespace std;
main()
{
int n, m, rivi, sarake, aita=0, lehma;
cin>>n>>m;
char kartta[n][m];
for(rivi=0;rivi<n;rivi++)
for(sarake=0;sarake<m;sarake++)
cin>>kartta[rivi][sarake];
for(rivi=0;rivi<n;rivi++)
{
aita=0;
for(sarake=0;sarake<m;sarake++)
{
if(kartta[rivi][sarake]=='*')
aita=aita+1;
switch(aita)
{
case 1: if(kartta[rivi][sarake]=='@')
lehma=lehma+1;
break;
}
}
}
cout<<lehma;
}
Test details
Test 1
Group: 1, 2
Verdict: WRONG ANSWER
| input |
|---|
| 3 3 *** *.* *** |
| correct output |
|---|
| 0 |
| user output |
|---|
| 1431654656 |
Test 2
Group: 1, 2
Verdict: WRONG ANSWER
| input |
|---|
| 3 3 *** *@* *** |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1431654657 |
Test 3
Group: 1, 2
Verdict: WRONG ANSWER
| input |
|---|
| 5 10 ...@...... ..******.. @.*@@@@*.@ ..******.. ... |
| correct output |
|---|
| 4 |
| user output |
|---|
| 1431654660 |
Test 4
Group: 1, 2
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 @@...@.@@@ ..@@.@@..@ @.*******@ ..*@....*. ... |
| correct output |
|---|
| 11 |
| user output |
|---|
| 1431654667 |
Test 5
Group: 1, 2
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 ********** *@@@@@@@@* *@@@@@@@@* *@@@@@@@@* ... |
| correct output |
|---|
| 64 |
| user output |
|---|
| 1431654720 |
Test 6
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 .........................@....... |
| correct output |
|---|
| 60 |
| user output |
|---|
| 1431654716 |
Test 7
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 ..@@..........@......@....@@..... |
| correct output |
|---|
| 1507 |
| user output |
|---|
| 1431656163 |
Test 8
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 .@..@@..@@.@..@..@..@@..@..@..... |
| correct output |
|---|
| 3348 |
| user output |
|---|
| 1431658004 |
Test 9
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@... |
| correct output |
|---|
| 7225 |
| user output |
|---|
| 1431661881 |
