#3556
xorsum
Se dau numerele naturale n
, x
, y
, z
, t
. Se generează vectorul a
astfel: a[i] = (a[i-1] * x + y) % z
, pentru 1 ≤ i ≤ n
si a[i] = 0
pentru i = 0
. Determinați ∑(a[i] XOR a[j])
, unde 1 ≤ i < j ≤ n
, modulo t
.
Problema | xorsum | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 1 MB
/
Stivă 1 MB
|
Id soluție | #48941846 | Utilizator | |
Fișier | xorsum.cpp | Dimensiune | 481 B |
Data încărcării | 10 Februarie 2024, 09:45 | Scor / rezultat | Eroare de compilare |
xorsum.cpp: In function 'int main()': xorsum.cpp:13:43: error: invalid operands of types '__gnu_cxx::__promote_2<int, int, double, double>::__type {aka double}' and 'int' to binary 'operator%' long long sum_x = (pow(x, n + 1) - 1) % t / (x - 1); ^ xorsum.cpp:14:43: error: invalid operands of types '__gnu_cxx::__promote_2<int, int, double, double>::__type {aka double}' and 'int' to binary 'operator%' long long sum_y = (pow(y, n + 1) - 1) % t / (y - 1); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema xorsum 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ă.