Problema | Numere Mari | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #52876056 | Utilizator | |
Fișier | numere_mari.cpp | Dimensiune | 6.80 KB |
Data încărcării | 11 Octombrie 2024, 13:28 | Scor / rezultat | 60 puncte |
numere_mari.cpp: In function 'bool operator==(const big_int&, const big_int&)': numere_mari.cpp:40:44: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 0; i < a.digits.length(); i++){ ^ numere_mari.cpp: In member function 'big_int big_int::operator+(const big_int&) const': numere_mari.cpp:105:72: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0; i<max(n.digits.length(), m.digits.length()); i++){ ^ numere_mari.cpp:107:42: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] (i < n.digits.length()) ? x = (n.digits[i]) - '0' : x = 0; ^ numere_mari.cpp:108:42: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] (i < m.digits.length()) ? y = (m.digits[i]) - '0' : y = 0; ^ numere_mari.cpp:123:77: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 0; i <= max(this->digits.length(), b.digits.length()); i++){ ^ numere_mari.cpp:125:42: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] (i < this->digits.length()) ? x = (this->digits[i]) - '0' : x = 0; ^ numere_mari.cpp:126:38: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] (i < b.digits.length()) ? y = (b.digits[i]) - '0' : y = 0; ^ numere_mari.cpp: In member function 'big_int big_int::operator%(const big_int&) const': numere_mari.cpp:244:29: warning: suggest parentheses around '&&' within '||' [-Wparentheses] if(this->sign == -1 && b.sign == -1 || this->sign == -1 && b.sign == 1) ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0 secunde | OK. | 10 | 10 | Exemplu | |
2 | 0 secunde | Raspuns gresit. | 10 | 0 | ||
3 | 0 secunde | Raspuns gresit. | 10 | 0 | ||
4 | 0 secunde | OK. | 10 | 10 | ||
5 | Depășit | Limita de timp depășită | 10 | 0 | ||
6 | 0 secunde | OK. | 10 | 10 | ||
7 | 0 secunde | OK. | 10 | 10 | ||
8 | 0 secunde | OK. | 10 | 10 | ||
9 | Depășit | Limita de timp depășită | 10 | 0 | ||
10 | 0.02 secunde | OK. | 10 | 10 | ||
Punctaj total | 60 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Numere Mari face parte din a doua categorie. Pentru aceste probleme se folosește un program suport, furnizat de propunătorul problemei. 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ă.