Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- int x;
- cin >> x;
- int rezultat = 2e9;
- for(int d = 0; d <= x; d++) {
- int drvena = 5 * d;
- if(drvena >= x) {
- if(rezultat > d) {
- rezultat = d;
- }
- }
- if(drvena <= x) {
- int metalna = (x - drvena) / 10;
- if((x - drvena) % 10 > 0) {
- metalna++;
- }
- if(metalna <= d and drvena + 10 * metalna >= x) {
- if(rezultat > d + metalna) {
- rezultat = d + metalna;
- }
- }
- }
- }
- cout << rezultat << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement