CSES - Datatähti 2017 loppu - Results
Submission details
Task:Noitapeli
Sender:kapesu8
Submission time:2017-01-19 16:24:54 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.04 s1details
#20.04 s1details
#3ACCEPTED0.05 s1details
#40.04 s1details
#50.04 s1details
#6--2details
#70.04 s2details
#8--2details
#9--2details
#10--2details
#11--3details
#120.07 s3details
#13--3details
#14--3details
#15--3details

Code

#include <iostream>
#include <vector>

int main()
{
	std::vector<int> votes;
	int n,xn;
	std::cin >> n;
	
	votes.push_back(0);
	for(int i = 0;i < n;i++)
	{
		std::cin >> xn;
		votes.push_back(xn);
	}
	int result = 0;
	for(int a = 1;a <= n;a++)
	{
		for(int b = a + 1;b <= n;b++)
		{
			if(votes[a] == b || votes[b] == a)
				break;
			for(int c = b + 1;c <= n;c++)
			{
				if(votes[a] != b && votes[a] != c && votes[b] != a && votes[b] != c && votes[c] != a && votes[c] != b)
				{
					result++;
				}
			}
		}
	}
	std::cout << result;
	return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
100
2 1 4 3 6 5 8 7 10 9 12 11 14 ...

correct output
156800

user output
78400

Test 2

Group: 1

Verdict:

input
100
2 3 4 5 6 7 8 9 10 11 12 13 14...

correct output
152000

user output
0

Test 3

Group: 1

Verdict: ACCEPTED

input
100
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
156849

user output
156849

Test 4

Group: 1

Verdict:

input
100
2 3 1 5 6 4 8 9 7 11 12 10 14 ...

correct output
151968

user output
50688

Test 5

Group: 1

Verdict:

input
100
8 98 100 62 42 36 95 70 22 49 ...

correct output
152040

user output
98285

Test 6

Group: 2

Verdict:

input
5000
2 1 4 3 6 5 8 7 10 9 12 11 14 ...

correct output
20808340000

user output
(empty)

Test 7

Group: 2

Verdict:

input
5000
2 3 4 5 6 7 8 9 10 11 12 13 14...

correct output
20795850000

user output
0

Test 8

Group: 2

Verdict:

input
5000
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
20808342499

user output
(empty)

Test 9

Group: 2

Verdict:

input
5000
2 3 1 5 6 4 8 9 7 11 12 10 14 ...

correct output
20795848337

user output
(empty)

Test 10

Group: 2

Verdict:

input
5000
283 2880 2565 3289 4160 936 39...

correct output
20795852465

user output
(empty)

Test 11

Group: 3

Verdict:

input
100000
2 1 4 3 6 5 8 7 10 9 12 11 14 ...

correct output
166656666800000

user output
(empty)

Test 12

Group: 3

Verdict:

input
100000
2 3 4 5 6 7 8 9 10 11 12 13 14...

correct output
166651667000000

user output
0

Test 13

Group: 3

Verdict:

input
100000
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
166656666849999

user output
(empty)

Test 14

Group: 3

Verdict:

input
100000
2 3 1 5 6 4 8 9 7 11 12 10 14 ...

correct output
166651666966668

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000
186 62491 95379 37431 88427 93...

correct output
166651667250100

user output
(empty)