CF193E.Fibonacci Number
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
John Doe has a list of all Fibonacci numbers modulo 1013 . This list is infinite, it starts with numbers 0 and 1 . Each number in the list, apart from the first two, is a sum of previous two modulo 1013 . That is, John's list is made from the Fibonacci numbers' list by replacing each number there by the remainder when divided by 1013 .
John got interested in number f ( 0<=f<10^{13} ) and now wants to find its first occurrence in the list given above. Help John and find the number of the first occurence of number f in the list or otherwise state that number f does not occur in the list.
The numeration in John's list starts from zero. There, the 0 -th position is the number 0 , the 1 -st position is the number 1 , the 2 -nd position is the number 1 , the 3 -rd position is the number 2 , the 4 -th position is the number 3 and so on. Thus, the beginning of the list looks like this: 0,1,1,2,3,5,8,13,21,...
输入格式
The first line contains the single integer f ( 0<=f<10^{13} ) — the number, which position in the list we should find.
Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.
输出格式
Print a single number — the number of the first occurrence of the given number in John's list. If this number doesn't occur in John's list, print -1.
输入输出样例
输入#1
13
输出#1
7
输入#2
377
输出#2
14