#Lutece0278. Fibonacci
Fibonacci
Migrated from Lutece 278 Fibonacci
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
In the Fibonacci integer sequence, and for . For example, the first ten terms of the Fibonacci sequence are:
An alternative formula for the Fibonacci sequence is
Given an integer , your goal is to compute the last digits of .
Input
The input test file will contain multiple test cases. Each test case consists of a single line containing (where ).
The end-of-file is denoted by a single line containing the number -1
.
Output
For each test case, print the last four digits of . If the last four digits of are all zeros, print 0
; otherwise, omit any leading zeros (i.e., print mod ).
Samples
0
9
999999999
1000000000
-1
0
34
626
6875
Note
As a reminder, matrix multiplication is associative, and the product of two matrices is given by
Also, note that raising any matrix to the 0th power gives the identity matrix:
The data used in this problem is unofficial data prepared by 695375900. So any mistake here does not imply mistake in the offcial judge data.
Resources
Stanford Local 2006