#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 | #54178253 | Utilizator | |
Fișier | anagrame.cpp | Dimensiune | 378 B |
Data încărcării | 21 Noiembrie 2024, 13:18 | Scor / rezultat | 100 puncte |
anagrame.cpp: In function 'int main()': anagrame.cpp:8:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<strlen(s)/2;i++) ^ anagrame.cpp:10:11: warning: array subscript has type 'char' [-Wchar-subscripts] v[s[i]]++; ^ anagrame.cpp:12:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=strlen(s)-1;i>=strlen(s)/2;i--) ^ anagrame.cpp:14:11: warning: array subscript has type 'char' [-Wchar-subscripts] v[s[i]]--; ^ anagrame.cpp:16:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<strlen(s);i++) ^ anagrame.cpp:17:14: warning: array subscript has type 'char' [-Wchar-subscripts] if(v[s[i]]==0)k++; ^ anagrame.cpp:18:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if(k==strlen(s)-1)cout<<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. | 20 | 20 | ||
4 | 0 secunde | OK. | 20 | 20 | ||
5 | 0 secunde | OK. | 20 | 20 | ||
6 | 0 secunde | OK. | 10 | 10 | ||
7 | 0 secunde | OK. | 10 | 10 | ||
Punctaj total | 100 |
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ă.