알고리즘/BOJ

백준 12790번 Mini Fantasy War

꾸준함. 2018. 11. 1. 22:59

문제 링크입니다: https://www.acmicpc.net/problem/12790


간단한 구현 문제였습니다.


#include <iostream>

#include <algorithm>

using namespace std;

 

int main(void)

{

        ios_base::sync_with_stdio(0);

        cin.tie(0);

        int test_case;

        cin >> test_case;

 

        for (int t = 0; t < test_case; t++)

        {

                 int hp, mp, attack, defense, h, m, a, d;

                 cin >> hp >> mp >> attack >> defense >> h >> m >> a >> d;

 

                 hp = max(1, hp + h);

                 mp = max(1, mp + m);

                 attack = max(0, attack + a);

                 defense += d;

 

                 cout << hp + 5 * mp + 2 * attack + 2 * defense << "\n";

        }

        return 0;

}


개발환경:Visual Studio 2017


지적, 조언, 질문 환영입니다! 댓글 남겨주세요~

반응형

'알고리즘 > BOJ' 카테고리의 다른 글

백준 2463번 비용  (0) 2018.11.02
백준 5532번 방학 숙제  (0) 2018.11.01
백준 10707번 수도요금  (0) 2018.11.01
백준 2138번 전구와 스위치  (0) 2018.11.01
백준 1411번 비슷한 단어  (0) 2018.10.30