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

 

Coder's High 2016 Round 1 A번 문제입니다.

쉬운 문제인데, HP, MP, 공격력의 조건만 잘 보면 되겠습니다.

#include <bits/stdc++.h>
using namespace std;

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
	cout.tie(nullptr);
	
	int t;
	cin >> t;

	int hp, mp, atk, def;
	int a, b, c, d;
	while (t--) {
		cin >> hp >> mp >> atk >> def;
		cin >> a >> b >> c >> d;
		hp += a, mp += b, atk += c, def += d;
		cout << max(1, hp) + 5 * max(1, mp) + 2 * max(0, atk) + 2 * def << '\n';
	}

	return 0;
}
반응형