728x90
반응형
단순 사칙연산 문제이다.
for _ in range(int(input())):
li = list(map(int, input().split()))
s = [li[i] + li[i+4] for i in range(4)]
res = max(s[0], 1) + max(s[1], 1)*5 + max(s[2], 0)*2 + s[3]*2
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 13225번 Divisors(python) (0) | 2021.03.08 |
---|---|
백준 알고리즘 13073번 Sums(python) (0) | 2021.03.08 |
백준 알고리즘 12833번 XORXORXOR(python) (0) | 2021.03.08 |
백준 알고리즘 11772번 POT(python) (0) | 2021.03.08 |
백준 알고리즘 11874번 ZAMKA(python) (0) | 2021.03.08 |