[백준 12790번] Mini Fantasy War

2018. 1. 10. 15:52알고리즘/백준

반응형





소스코드


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
using namespace std;
 
int main() {
    int t, a, b, c, d, e, f, g, h;
    cin >> t;
    while (t--) {
        cin >> a >> b >> c >> d >> e >> f >> g >> h;
        a += e, b += f, c += g, d += h;
        a = a < 1 ? 1 : a, b = b < 1 ? 1 : b;
        c = c < 0 ? 0 : c;
        cout << a + (b * 5+ (c * 2+ (d * 2<< '\n';
    }
    return 0;
}
cs


반응형

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

[백준 12791번] Starman  (0) 2018.01.10
[백준 5596번] 시험 점수  (0) 2018.01.10
[백준 10984번] 내 학점을 구해줘  (0) 2018.01.10
[백준 2884번] 알람 시계  (0) 2018.01.10
[백준 5597번] 과제 안 내신 분..?  (0) 2018.01.10