#97
Anagrame
Să se scrie un program care verifică dacă două cuvinte date sunt anagrame.
Problema | Anagrame | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54894639 | Utilizator | |
Fișier | anagrame.cpp | Dimensiune | 547 B |
Data încărcării | 11 Decembrie 2024, 15:52 | Scor / rezultat | 70 puncte |
anagrame.cpp: In function 'int main()': anagrame.cpp:9:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(i=0;i<strlen(s1);i++) ^ anagrame.cpp:10:16: warning: array subscript has type 'char' [-Wchar-subscripts] v1[s1[i]-'0']++; ^ anagrame.cpp:13:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(i=0;i<strlen(s2);i++) ^ anagrame.cpp:14:16: warning: array subscript has type 'char' [-Wchar-subscripts] v2[s2[i]-'0']++; ^ anagrame.cpp:16:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(i=0;i<strlen(s1);i++) ^ anagrame.cpp:19:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(j=0;j<strlen(s2);j++) ^ anagrame.cpp:21:20: warning: array subscript has type 'char' [-Wchar-subscripts] if(s1[i]==s2[j] && v1[s1[i]-'0']==v2[s2[j]-'0']) ok=1; ^ anagrame.cpp:21:27: warning: array subscript has type 'char' [-Wchar-subscripts] if(s1[i]==s2[j] && v1[s1[i]-'0']==v2[s2[j]-'0']) ok=1; ^ anagrame.cpp:21:39: warning: array subscript has type 'char' [-Wchar-subscripts] if(s1[i]==s2[j] && v1[s1[i]-'0']==v2[s2[j]-'0']) ok=1; ^ anagrame.cpp:21:54: warning: array subscript has type 'char' [-Wchar-subscripts] if(s1[i]==s2[j] && v1[s1[i]-'0']==v2[s2[j]-'0']) ok=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 | OK. | 20 | 20 | ||
4 | 0 secunde | OK. | 20 | 20 | ||
5 | 0 secunde | Raspuns gresit. | 20 | 0 | ||
6 | 0 secunde | OK. | 10 | 10 | ||
7 | 0 secunde | OK. | 10 | 10 | ||
Punctaj total | 70 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Anagrame 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ă.