ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1820. Ural Steaks

Why WA? Почему Неверный ответ?
Posted by Arman 15 Jul 2011 14:02
#include <iostream>
using namespace std;

int main(int argc, char* argv[])
{
    int n, k, m;    cin>>n;    cin>>k;

        m=n;
        if(n<=k)
            cout<<n*2<<endl;
        else
        {
            while(m%k!=0)
                m--;
            cout<<(m/k+(n-m))*2<<endl;
        }

    return 0;
}
What's wrong?
В чем дело?
Re: Why WA? Почему Неверный ответ?
Posted by Ruslan 18 Jul 2011 05:13
Если n <= k, то все котлеты влазят в сковородку за раз и понадобится всего 2 минуты для их приготовления (а не n*2).