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 | #52809677 | Utilizator | |
Fișier | numere_mari.cpp | Dimensiune | 6.06 KB |
Data încărcării | 09 Octombrie 2024, 21:08 | Scor / rezultat | 50 puncte |
numere_mari.cpp: In function 'bool operator==(const big_int&, const big_int&)': numere_mari.cpp:41: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:107: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:109: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:110: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:125: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:127: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:128: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:220: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 | OK. | 10 | 10 | ||
3 | 0 secunde | OK. | 10 | 10 | ||
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 | Raspuns gresit. | 10 | 0 | ||
8 | 0 secunde | Raspuns gresit. | 10 | 0 | ||
9 | Depășit | Limita de timp depășită | 10 | 0 | ||
10 | 0.024 secunde | Raspuns gresit. | 10 | 0 | ||
Punctaj total | 50 |
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ă.