#3344
Fibonacci2
Șirul lui Fibonacci este definit astfel:
$$ F_n = \begin{cases}
1& \text{dacă } n = 1 \text{ sau } n = 2 ,\\
F_{n-1} + F_{n-2} & \text{dacă } n > 2.
\end{cases} $$
Se dă un număr natural n
. Determinați al n
-lea termen al șirului, modulo 666013
.
Problema | Fibonacci2 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #51320951 | Utilizator | |
Fișier | fibonacci2.c | Dimensiune | 1.31 KB |
Data încărcării | 06 Iunie 2024, 21:04 | Scor / rezultat | Eroare de compilare |
fibonacci2.c: In function 'Putere': fibonacci2.c:26:14: warning: initialization makes integer from pointer without a cast [enabled by default] long P = Putere(A , n / 2, I); ^ fibonacci2.c:27:5: warning: passing argument 1 of 'multiplyMatrix' makes pointer from integer without a cast [enabled by default] return multiplyMatrix(P, P); ^ fibonacci2.c:6:8: note: expected 'long int **' but argument is of type 'long int' long** multiplyMatrix(long **m1, long **m2) ^ fibonacci2.c:27:5: warning: passing argument 2 of 'multiplyMatrix' makes pointer from integer without a cast [enabled by default] return multiplyMatrix(P, P); ^ fibonacci2.c:6:8: note: expected 'long int **' but argument is of type 'long int' long** multiplyMatrix(long **m1, long **m2) ^ fibonacci2.c: At top level: fibonacci2.c:31:6: warning: return type of 'main' is not 'int' [-Wmain] long main() ^ fibonacci2.c: In function 'main': fibonacci2.c:50:5: warning: implicit declaration of function 'prlongf' [-Wimplicit-function-declaration] prlongf("%d", c[0][0]); ^ fibonacci2.c:34:10: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result] scanf("%d", &d); ^ fibonacci2.c:52:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ /tmp/ccSGSpzX.o: In function \`main': fibonacci2.c:(.text.startup+0xd5): undefined reference to \`prlongf' collect2: error: ld returned 1 exit status
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Fibonacci2 face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.