#2422
ProdusMaxim
Se citesc mai multe numere naturale nenule. Fiecare astfel de număr X
se va afișa, urmat de un triplet de numere a b c
cu proprietatea că a+b+c=X
, iar produsul lor este maxim.
Problema | ProdusMaxim | Operații I/O |
produsmaxim.in /produsmaxim.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 0.1 MB
/
Stivă 0 MB
|
Id soluție | #54760328 | Utilizator | |
Fișier | produsmaxim.cpp | Dimensiune | 343 B |
Data încărcării | 07 Decembrie 2024, 18:03 | Scor / rezultat | Eroare de compilare |
produsmaxim.cpp: In function 'int main()': produsmaxim.cpp:12:18: error: cannot bind 'std::basic_istream<char>' lvalue to 'std::basic_istream<char>&&' while(fin >> x){ ^ In file included from /usr/include/c++/4.8/sstream:38:0, from /usr/include/c++/4.8/complex:45, from /usr/include/c++/4.8/ccomplex:38, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:52, from produsmaxim.cpp:1: /usr/include/c++/4.8/istream:872:5: error: initializing argument 1 of 'std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&&, _Tp&) [with _CharT = char; _Traits = std::char_traits<char>; _Tp = long long int [100000]]' operator>>(basic_istream<_CharT, _Traits>&& __is, _Tp& __x) ^ produsmaxim.cpp:13:33: error: invalid operands of types 'long long int [100000]' and 'int' to binary 'operator/' fout << x << ' ' << x / 3 << ' ' << x / 3 + (x % 3 == 2) << ' ' << x / 3 + (x % 3 == 1) + (x % 3 == 2); ^ produsmaxim.cpp:13:49: error: invalid operands of types 'long long int [100000]' and 'int' to binary 'operator/' fout << x << ' ' << x / 3 << ' ' << x / 3 + (x % 3 == 2) << ' ' << x / 3 + (x % 3 == 1) + (x % 3 == 2); ^ produsmaxim.cpp:13:58: error: invalid operands of types 'long long int [100000]' and 'int' to binary 'operator%' fout << x << ' ' << x / 3 << ' ' << x / 3 + (x % 3 == 2) << ' ' << x / 3 + (x % 3 == 1) + (x % 3 == 2); ^ produsmaxim.cpp:13:80: error: invalid operands of types 'long long int [100000]' and 'int' to binary 'operator/' fout << x << ' ' << x / 3 << ' ' << x / 3 + (x % 3 == 2) << ' ' << x / 3 + (x % 3 == 1) + (x % 3 == 2); ^ produsmaxim.cpp:13:89: error: invalid operands of types 'long long int [100000]' and 'int' to binary 'operator%' fout << x << ' ' << x / 3 << ' ' << x / 3 + (x % 3 == 2) << ' ' << x / 3 + (x % 3 == 1) + (x % 3 == 2); ^ produsmaxim.cpp:13:104: error: invalid operands of types 'long long int [100000]' and 'int' to binary 'operator%' fout << x << ' ' << x / 3 << ' ' << x / 3 + (x % 3 == 2) << ' ' << x / 3 + (x % 3 == 1) + (x % 3 == 2); ^ produsmaxim.cpp:10:15: warning: unused variable 'i' [-Wunused-variable] long long i = 1; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema ProdusMaxim 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ă.