CSES - Datatähti 2023 loppu - Results
Submission details
Task:Ruudukko
Sender:Kemm1706
Submission time:2023-01-21 15:08:37 +0200
Language:C++20
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.00 s1, 2, 3details
#20.00 s1, 2, 3details
#30.00 s1, 2, 3details
#40.00 s1, 2, 3details
#5ACCEPTED0.00 s1, 2, 3details
#60.00 s1, 2, 3details
#70.00 s1, 2, 3details
#80.00 s1, 2, 3details
#9ACCEPTED0.00 s1, 2, 3details
#100.00 s1, 2, 3details
#110.00 s1, 2, 3details
#120.00 s1, 2, 3details
#13ACCEPTED0.00 s1, 2, 3details
#140.00 s1, 2, 3details
#150.00 s1, 2, 3details
#160.00 s1, 2, 3details
#17ACCEPTED0.00 s2, 3details
#180.00 s2, 3details
#190.00 s2, 3details
#200.00 s2, 3details
#21ACCEPTED0.00 s2, 3details
#220.00 s2, 3details
#230.00 s2, 3details
#240.00 s2, 3details
#250.00 s3details
#260.00 s3details
#270.00 s3details
#280.00 s3details
#290.00 s3details
#300.00 s3details
#310.00 s3details
#320.00 s3details
#330.00 s3details
#340.00 s3details
#350.00 s3details
#360.00 s3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:26:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
   26 |     if(n == 2)
      |       ^
input/code.cpp:43:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
   43 |     if(n == 3)
      |       ^

Code

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair <ll, ll> pl;
typedef vector <pl> vpl;
const ll modd = 1e9 + 7;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    ll n, m, i;
    cin >> n >> m;
    if(n == 1)
    {
        for(i = 0; i < m; i++)
            cout << ". ";
        return 0;
    }
    if(m == 1)
    {
        for(i = 0; i < n; i++)
            cout << ".\n";
        return 0;
    }
    if(n == 2)
        if(m == 2)
        {
            cout << ". #\n. .";
            return 0;
        }
        else
            if(m == 3)
            {
                cout << ". . .\n# . #";
                return 0;
            }
            else
            {
                cout << ". . . .\n# . # .";
                return 0;
            }
    if(n == 3)
        if(m == 2)
        {
            cout << ". .\n# .\n. .";
            return 0;
        }
        else
            if(m == 3)
            {
                cout <<". . .\n# . #\n. . .";
                return 0;
            }
            else
            {
                cout << ". . . .\n# . # .\n. . . #";
                return 0;
            }
    if(m == 2)
    {
        cout << ". .\n# .\n. .\n# .";
        return 0;
    }
    if(m == 3)
    {
        cout << ". # .\n. . .\n. # .\n. . #";
        return 0;
    }
    cout << ". # . .\n. . . #\n. # . .\n. . # .";
    return 0;
}

Test details

Test 1

Group: 1, 2, 3

Verdict: ACCEPTED

input
1 1

correct output
.

user output

Test 2

Group: 1, 2, 3

Verdict:

input
1 2

correct output
..

user output
. . 

Test 3

Group: 1, 2, 3

Verdict:

input
1 3

correct output
...

user output
. . . 

Test 4

Group: 1, 2, 3

Verdict:

input
1 4

correct output
....

user output
. . . . 

Test 5

Group: 1, 2, 3

Verdict: ACCEPTED

input
2 1

correct output
.
.

user output
.
.

Test 6

Group: 1, 2, 3

Verdict:

input
2 2

correct output
.#
..

user output
. #
. .

Test 7

Group: 1, 2, 3

Verdict:

input
2 3

correct output
.#.
...

user output
. . .
# . #

Test 8

Group: 1, 2, 3

Verdict:

input
2 4

correct output
.#.#
....

user output
. . . .
# . # .

Test 9

Group: 1, 2, 3

Verdict: ACCEPTED

input
3 1

correct output
.
.
.

user output
.
.
.

Test 10

Group: 1, 2, 3

Verdict:

input
3 2

correct output
.#
..
.#

user output
. .
# .
. .

Test 11

Group: 1, 2, 3

Verdict:

input
3 3

correct output
.#.
...
.#.

user output
. . .
# . #
. . .

Test 12

Group: 1, 2, 3

Verdict:

input
3 4

correct output
.#.#
....
.#.#

user output
. . . .
# . # .
. . . #

Test 13

Group: 1, 2, 3

Verdict: ACCEPTED

input
4 1

correct output
.
.
.
.

user output
.
.
.
.

Test 14

Group: 1, 2, 3

Verdict:

input
4 2

correct output
..
.#
..
#.

user output
. .
# .
. .
# .

Test 15

Group: 1, 2, 3

Verdict:

input
4 3

correct output
...
.#.
..#
#..

user output
. # .
. . .
. # .
. . #

Test 16

Group: 1, 2, 3

Verdict:

input
4 4

correct output
....
.#.#
..#.
#...

user output
. # . .
. . . #
. # . .
. . # .

Test 17

Group: 2, 3

Verdict: ACCEPTED

input
999 1

correct output
.
.
.
.
.
...

user output
.
.
.
.
.
...

Test 18

Group: 2, 3

Verdict:

input
999 2

correct output
.#
..
.#
..
#.
...

user output
. .
# .
. .
# .

Test 19

Group: 2, 3

Verdict:

input
999 3

correct output
.#.
...
.#.
..#
#..
...

user output
. # .
. . .
. # .
. . #

Test 20

Group: 2, 3

Verdict:

input
999 4

correct output
.#.#
....
.#.#
..#.
#...
...

user output
. # . .
. . . #
. # . .
. . # .

Test 21

Group: 2, 3

Verdict: ACCEPTED

input
1000 1

correct output
.
.
.
.
.
...

user output
.
.
.
.
.
...

Test 22

Group: 2, 3

Verdict:

input
1000 2

correct output
..
.#
..
#.
..
...

user output
. .
# .
. .
# .

Test 23

Group: 2, 3

Verdict:

input
1000 3

correct output
...
.#.
..#
#..
..#
...

user output
. # .
. . .
. # .
. . #

Test 24

Group: 2, 3

Verdict:

input
1000 4

correct output
....
.#.#
..#.
#...
..#.
...

user output
. # . .
. . . #
. # . .
. . # .

Test 25

Group: 3

Verdict:

input
999 995

correct output
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#...

user output
. # . .
. . . #
. # . .
. . # .

Test 26

Group: 3

Verdict:

input
999 996

correct output
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#...

user output
. # . .
. . . #
. # . .
. . # .

Test 27

Group: 3

Verdict:

input
999 997

correct output
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#...

user output
. # . .
. . . #
. # . .
. . # .

Test 28

Group: 3

Verdict:

input
999 998

correct output
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#...

user output
. # . .
. . . #
. # . .
. . # .

Test 29

Group: 3

Verdict:

input
999 999

correct output
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#...

user output
. # . .
. . . #
. # . .
. . # .

Test 30

Group: 3

Verdict:

input
999 1000

correct output
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#...

user output
. # . .
. . . #
. # . .
. . # .

Test 31

Group: 3

Verdict:

input
1000 995

correct output
.................................

user output
. # . .
. . . #
. # . .
. . # .

Test 32

Group: 3

Verdict:

input
1000 996

correct output
.................................

user output
. # . .
. . . #
. # . .
. . # .

Test 33

Group: 3

Verdict:

input
1000 997

correct output
.................................

user output
. # . .
. . . #
. # . .
. . # .

Test 34

Group: 3

Verdict:

input
1000 998

correct output
.................................

user output
. # . .
. . . #
. # . .
. . # .

Test 35

Group: 3

Verdict:

input
1000 999

correct output
.................................

user output
. # . .
. . . #
. # . .
. . # .

Test 36

Group: 3

Verdict:

input
1000 1000

correct output
.................................

user output
. # . .
. . . #
. # . .
. . # .