#779
VeciniPari
Se dă o matrice cu n
linii şi m
coloane şi elemente numere naturale. Să se determine câte elemente din matrice au toți vecinii numere pare.
Problema | VeciniPari | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #50754701 | Utilizator | |
Fișier | vecinipari.cpp | Dimensiune | 3.73 KB |
Data încărcării | 29 Aprilie 2024, 15:39 | Scor / rezultat | 0 puncte |
vecinipari.cpp: In function 'int main()': vecinipari.cpp:35:59: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses] if(i=1 && 1<j<m){ ^ vecinipari.cpp:35:63: warning: suggest parentheses around assignment used as truth value [-Wparentheses] if(i=1 && 1<j<m){ ^ vecinipari.cpp:40:60: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses] if(1<i<n && j==m){ ^ vecinipari.cpp:45:76: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses] if(i==n && 1<j<m){ ^ vecinipari.cpp:50:76: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses] if(1<i<n && j==m){ ^ vecinipari.cpp:55:84: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses] if(1<i<n && 1<j<m){ ^ vecinipari.cpp:55:93: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses] if(1<i<n && 1<j<m){ ^ vecinipari.cpp:41:68: warning: array subscript is below array bounds [-Warray-bounds] if(a[i-1][j]%2==0 && a[i][j-1]%2==0 && a[i+1][j]%2==0){ ^ vecinipari.cpp:51:84: warning: array subscript is below array bounds [-Warray-bounds] if(a[i-1][j]%2==0 && a[i][j+1]%2==0 && a[i+1][j]%2==0){ ^ vecinipari.cpp:56:92: warning: array subscript is below array bounds [-Warray-bounds] if(a[i-1][j]%2==0 && a[i][j+1]%2==0 && a[i+1][j]%2==0 && a[i][j-1]%2==0){ ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | Depășit | Limita de timp depășită | 20 | 0 | Exemplu | |
2 | Depășit | Limita de timp depășită | 40 | 0 | ||
3 | Depășit | Limita de timp depășită | 40 | 0 | ||
Punctaj total | 0 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema VeciniPari 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ă.