#3897
Josephus Sequence
Josephus este un matematician înrăit.
Într-o zi acesta se joacă cu primele N
numere prime, când se decide să își construiască propiul său șir circular format din aceste numere. Pe prima poziție se va afla primul număr prim, adică 2
, iar mai apoi se parcurge circular șirul din K
în K
, completându-se cu restul de numere prime, până la repartizarea tuturor.
ad-hoc
Problema | Josephus Sequence | Operații I/O |
josephus.in /josephus.out
|
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 32 MB
/
Stivă 8 MB
|
Id soluție | #47341947 | Utilizator | |
Fișier | josephus_sequence.cpp | Dimensiune | 1.79 KB |
Data încărcării | 10 Decembrie 2023, 15:59 | Scor / rezultat | 0 puncte |
josephus_sequence.cpp: In function 'void getPrimes(unsigned int)': josephus_sequence.cpp:19:50: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 1; ((i * i) << 1) + (i << 1) <= N; ++i) { ^ josephus_sequence.cpp:21:69: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int j = ((i * i) << 1) + (i << 1); (j << 1) + 1 <= N; j += (i << 1) + 1) ^ josephus_sequence.cpp:26:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 1; 2 * i + 1 <= N; ++i) ^ josephus_sequence.cpp:27:40: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses] if (p[i >> 3] & (1 << (i & 7)) == 0) ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0.028 secunde | Raspuns gresit. | 5 | 0 | Exemplu | |
2 | 0.028 secunde | Raspuns gresit. | 5 | 0 | ||
3 | 0.024 secunde | Raspuns gresit. | 5 | 0 | ||
4 | 0.028 secunde | Raspuns gresit. | 5 | 0 | ||
5 | 0.064 secunde | Raspuns gresit. | 10 | 0 | ||
6 | 0.068 secunde | Raspuns gresit. | 10 | 0 | ||
7 | 0.096 secunde | Raspuns gresit. | 10 | 0 | ||
8 | 0.168 secunde | Raspuns gresit. | 15 | 0 | ||
9 | 0.264 secunde | Raspuns gresit. | 15 | 0 | ||
10 | 0.46 secunde | Raspuns gresit. | 10 | 0 | ||
11 | 0.444 secunde | Raspuns gresit. | 10 | 0 | ||
Punctaj total | 0 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Josephus Sequence 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ă.