CSES - Datatähti 2021 loppu - Results
Submission details
Task:Kolmijako
Sender:Guuber
Submission time:2021-01-23 16:45:33 +0200
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1, 2details
#2ACCEPTED0.01 s1, 2details
#30.01 s1, 2details
#40.01 s1, 2details
#50.01 s1, 2details
#60.01 s1, 2details
#70.01 s1, 2details
#80.01 s1, 2details
#90.01 s2details
#100.01 s2details
#110.01 s2details
#120.01 s2details
#130.01 s2details
#140.01 s2details
#150.01 s2details

Code

#include<bits/stdc++.h>
using namespace std;

int main(){
	int n;
	cin >> n;
	if(n == 1) cout << "IMPOSSIBLE" << "\n";
	if(n == 2) cout << "IMPOSSIBLE" << "\n";
	if(n == 3) cout << "1 2 3\n";
	if(n == 4) cout << "IMPOSSIBLE\n";
	if(n == 5) cout << "1 1 1 2 3\n";
	if(n == 6) cout << "2 3 1 3 1 2\n";
	if(n == 7) cout << "3 3 2 3 1 1 2\n";
	if(n == 8) cout << "1 1 1 2 3 3 1 2\n";
	if(n == 9) cout << "1 1 1 1 2 3 1 3 2\n";
	if(n == 10) cout << "1 1 1 3 3 1 3 1 2 2\n";
}

Test details

Test 1

Group: 1, 2

Verdict: ACCEPTED

input
3

correct output
1 2 3 

user output
1 2 3

Test 2

Group: 1, 2

Verdict: ACCEPTED

input
4

correct output
IMPOSSIBLE

user output
IMPOSSIBLE

Test 3

Group: 1, 2

Verdict:

input
5

correct output
1 3 1 3 2 

user output
1 1 1 2 3

Test 4

Group: 1, 2

Verdict:

input
6

correct output
1 3 2 2 1 3 

user output
2 3 1 3 1 2

Test 5

Group: 1, 2

Verdict:

input
7

correct output
IMPOSSIBLE

user output
3 3 2 3 1 1 2

Test 6

Group: 1, 2

Verdict:

input
8

correct output
2 3 1 2 3 3 2 1 

user output
1 1 1 2 3 3 1 2

Test 7

Group: 1, 2

Verdict:

input
9

correct output
1 2 3 1 2 3 3 2 1 

user output
1 1 1 1 2 3 1 3 2

Test 8

Group: 1, 2

Verdict:

input
10

correct output
IMPOSSIBLE

user output
1 1 1 3 3 1 3 1 2 2

Test 9

Group: 2

Verdict:

input
42

correct output
1 3 2 2 1 3 1 2 3 3 2 1 1 2 3 ...

user output
(empty)

Test 10

Group: 2

Verdict:

input
95

correct output
1 3 1 3 2 1 2 3 3 2 1 1 2 3 3 ...

user output
(empty)

Test 11

Group: 2

Verdict:

input
96

correct output
1 3 2 2 1 3 1 2 3 3 2 1 1 2 3 ...

user output
(empty)

Test 12

Group: 2

Verdict:

input
97

correct output
IMPOSSIBLE

user output
(empty)

Test 13

Group: 2

Verdict:

input
98

correct output
2 3 1 2 3 3 2 1 1 2 3 3 2 1 1 ...

user output
(empty)

Test 14

Group: 2

Verdict:

input
99

correct output
1 2 3 1 2 3 3 2 1 1 2 3 3 2 1 ...

user output
(empty)

Test 15

Group: 2

Verdict:

input
100

correct output
IMPOSSIBLE

user output
(empty)