CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:Turhake
Submission time:2022-11-01 18:35:19 +0200
Language:C++11
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.00 s1, 2details
#20.00 s1, 2details
#30.00 s1, 2details
#40.00 s1, 2details
#50.00 s1, 2details
#60.00 s2details
#70.00 s2details
#80.00 s2details
#90.00 s2details

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:

input
3 3
***
*.*
***

correct output
0

user output
1431654656

Test 2

Group: 1, 2

Verdict:

input
3 3
***
*@*
***

correct output
1

user output
1431654657

Test 3

Group: 1, 2

Verdict:

input
5 10
...@......
..******..
@.*@@@@*.@
..******..
...

correct output
4

user output
1431654660

Test 4

Group: 1, 2

Verdict:

input
10 10
@@...@.@@@
..@@.@@..@
@.*******@
..*@....*.
...

correct output
11

user output
1431654667

Test 5

Group: 1, 2

Verdict:

input
10 10
**********
*@@@@@@@@*
*@@@@@@@@*
*@@@@@@@@*
...

correct output
64

user output
1431654720

Test 6

Group: 2

Verdict:

input
100 100
.........................@.......

correct output
60

user output
1431654716

Test 7

Group: 2

Verdict:

input
100 100
..@@..........@......@....@@.....

correct output
1507

user output
1431656163

Test 8

Group: 2

Verdict:

input
100 100
.@..@@..@@.@..@..@..@@..@..@.....

correct output
3348

user output
1431658004

Test 9

Group: 2

Verdict:

input
100 100
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...

correct output
7225

user output
1431661881