In the event of technical difficulties with Szkopuł, please contact us via email at szkopul@fri.edu.pl.
If you would like to talk about tasks, solutions or technical problems, please visit our Discord servers. They are moderated by the community, but members of the support team are also active there.
Children have gathered in a circle and are playing with a counting-out rhyme.
The children are numbered to
so that (for
) the child number
stands to the
left of the child number
, and the child number
stands to the left of the child number
. The child who is counted
out in the rhyme leaves the circle. The counting out is repeated until there is
no one left in the circle. The rules of the play are as follows:
We observe the children playing counting out and we notice the order in which they leave the circle. Basing on this information we try to guess how many syllables the counting-out rhyme consists of.
Write a program which:
In the first line of the standard input there is one positive integer
,
. In the second line there are
integers separated by single spaces. The
-th number
tells at which turn of the counting out the child of number
left
the circle.
Your program should write in the first and only line of the standard output
either one integer: the smallest number of syllables that the
counting-out rhyme can consist of, or one word NIE, if such a number
does not exist.
For the input data:
4 1 4 2 3
the correct result is:
5
Task author: Jakub Pawlewicz.