CSES - Putka Open 2015 – 3/6 - Results
Submission details
Task:Ruudukko
Sender:
Submission time:2015-09-13 17:59:35 +0300
Language:C++
Status:READY
Result:12
Feedback
groupverdictscore
#1ACCEPTED12
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.05 s1details
#2ACCEPTED0.06 s1details
#3ACCEPTED0.05 s1details
#4ACCEPTED0.05 s1details
#5ACCEPTED0.04 s1details
#6ACCEPTED0.06 s2details
#70.05 s2details
#80.05 s2details
#90.05 s2details
#100.06 s2details
#110.05 s3details
#120.06 s3details
#130.05 s3details
#140.05 s3details
#150.05 s3details

Code

#include <iostream>
#include <algorithm>
#include <cmath>
#include <climits>
#include <cstdio>

using namespace std;

typedef signed long long int ll;

#define M (1000000007)

int main() {

    int k;
    cin >> k;

    cout << "....................\n";

    for (int i = 20; i >= 1; --i) {
        if (i > k) {
            cout << '#';
        } else {
            cout << '.';
        }
    }

    cout << '\n';
    
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";
    cout << "###################.\n";

    cout << endl;

    return 0;
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
2

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

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

Test 2

Group: 1

Verdict: ACCEPTED

input
5

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

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

Test 3

Group: 1

Verdict: ACCEPTED

input
7

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

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

Test 4

Group: 1

Verdict: ACCEPTED

input
8

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

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

Test 5

Group: 1

Verdict: ACCEPTED

input
9

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

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

Test 6

Group: 2

Verdict: ACCEPTED

input
19

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

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

Test 7

Group: 2

Verdict:

input
32

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

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

Test 8

Group: 2

Verdict:

input
44

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

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

Test 9

Group: 2

Verdict:

input
76

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

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

Test 10

Group: 2

Verdict:

input
93

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

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

Test 11

Group: 3

Verdict:

input
141

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

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

Test 12

Group: 3

Verdict:

input
422

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

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

Test 13

Group: 3

Verdict:

input
671

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

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

Test 14

Group: 3

Verdict:

input
895

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

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

Test 15

Group: 3

Verdict:

input
956

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

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