はまやんはまやんはまやん

hamayanhamayan's blog

Rolled Egg [Kodamanと愉快な仲間たち B]

https://www.hackerrank.com/contests/kodamanwithothers/challenges/rolled-egg

解説

https://www.hackerrank.com/contests/kodamanwithothers/challenges/rolled-egg/submissions/code/1316475415

6個入りパックを2個か、12個入りパックを1個が最適なので、min(A*2,B)が答え。

int A, B;
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> A >> B;
    int ans = min(A * 2, B);
    cout << ans << endl;
}