#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 | #51320960 | Utilizator | |
Fișier | fibonacci2.c | Dimensiune | 1.31 KB |
Data încărcării | 06 Iunie 2024, 21:05 | Scor / rezultat | 0 puncte |
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: format '%d' expects argument of type 'int', but argument 2 has type 'long int' [-Wformat=] printf("%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] } ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0 secunde | Exited with error status 1 | 20 | 0 | Exemplu | |
2 | 0 secunde | Exited with error status 5 | 20 | 0 | ||
3 | 0 secunde | Exited with error status 7 | 20 | 0 | ||
4 | 0 secunde | Exited with error status 7 | 20 | 0 | ||
5 | 0 secunde | Exited with error status 7 | 20 | 0 | ||
Punctaj total | 0 |
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ă.