CSES - Datatähti 2018 alku - Results
Submission details
Task:Fraktaali
Sender:Katajisto
Submission time:2017-10-03 11:18:54 +0300
Language:C++
Status:READY
Result:50
Feedback
groupverdictscore
#1ACCEPTED10
#2ACCEPTED10
#3ACCEPTED10
#4ACCEPTED10
#5ACCEPTED10
#60
#70
#80
#90
#100
Test results
testverdicttimegroup
#1ACCEPTED0.05 s1details
#2ACCEPTED0.04 s2details
#3ACCEPTED0.04 s3details
#4ACCEPTED0.05 s4details
#5ACCEPTED0.05 s5details
#60.03 s6details
#70.05 s7details
#80.04 s8details
#90.04 s9details
#100.03 s10details

Code

#include <iostream>
#include <string>
using namespace std;
int main()
{
	int input;
	cin >> input;
	if (input == 1)
	{
		cout << "#" << endl;
	}
	if (input == 2)
	{
		cout << "##" << endl;
		cout << "#." << endl;
	}
	if (input == 3)
	{
		cout << "####" << endl;
		cout << "#.#." << endl;
		cout << "##.." << endl;
		cout << "#..#" << endl;
	}
	if (input == 4)
	{
		cout << "########" << endl;
		cout << "#.#.#.#." << endl;
		cout << "##..##.." << endl;
		cout << "#..##..#" << endl;
		cout << "####...." << endl;
		cout << "#.#..#.#" << endl;
		cout << "##....##" << endl;
		cout << "#..#.##." << endl;
	}
	if (input == 5)
	{
		cout << "################" << endl;
		cout << "#.#.#.#.#.#.#.#." << endl;
		cout << "##..##..##..##.." << endl;
		cout << "#..##..##..##..#" << endl;
		cout << "####....####...." << endl;
		cout << "#.#..#.##.#..#.#" << endl;
		cout << "##....####....##" << endl;
		cout << "#..#.##.#..#.##." << endl;
		cout << "########........" << endl;
		cout << "#.#.#.#..#.#.#.#" << endl;
		cout << "##..##....##..##" << endl;
		cout << "#..##..#.##..##." << endl;
		cout << "####........####" << endl;
		cout << "#.#..#.#.#.##.#." << endl;
		cout << "##....##..####.." << endl;
		cout << "#..#.##..##.#..#" << endl;
	}
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
1

correct output
#

user output
#

Test 2

Group: 2

Verdict: ACCEPTED

input
2

correct output
##
#.

user output
##
#.

Test 3

Group: 3

Verdict: ACCEPTED

input
3

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

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

Test 4

Group: 4

Verdict: ACCEPTED

input
4

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

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

Test 5

Group: 5

Verdict: ACCEPTED

input
5

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

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

Test 6

Group: 6

Verdict:

input
6

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

user output
(empty)

Test 7

Group: 7

Verdict:

input
7

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

user output
(empty)

Test 8

Group: 8

Verdict:

input
8

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

user output
(empty)

Test 9

Group: 9

Verdict:

input
9

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

user output
(empty)

Test 10

Group: 10

Verdict:

input
10

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

user output
(empty)