[BOJ 9817] Necklace of Beads
View as PDF
Submit solution
Assembly, Awk, C, C++, Java, Pascal, Perl, Python, Sed, Text
Points:
4
Time limit:
1.0s
Memory limit:
128M
Problem types
Allowed languages
Beads of red, blue or green colors are connected together into a circular necklace of n beads ( n < 24 ). If the repetitions that are produced by rotation around the center of the circular necklace or reflection to the axis of symmetry are all neglected, how many different forms of the necklace are there?</p>

입력 형식
The input has several lines, and each line contains the input data n. -1 denotes the end of the input file.
출력 형식
The output should contain the output data: Number of different forms, in each line correspondent to the input data.
예제 입력
4
5
-1
예제 출력
21
39
Comments