티스토리 뷰
반응형
python
N = int(input())
equip = list()
res = list()
for i in range(N):
hp, mp, _str, _def, *equip = map(int, input().split())
res = [hp + equip[0], mp + equip[1], _str + equip[2], _def + equip[3]]
if res[0] < 1:
res[0] = 1
if res[1] < 1:
res[1] = 1
if res[2] < 0:
res[2] = 0
power = 1 * res[0] + 5 * res[1] + 2 * res[2] + 2 * res[3]
print(power)
https://www.acmicpc.net/problem/12790
'Python' 카테고리의 다른 글
클라이언트 간 메시지 송수신 스터디(nginx + fastapi + celery + rabbitMQ) (0) | 2023.08.04 |
---|---|
Python datetime 날짜의 월이 영어일때, 12시 pm, am처리 (0) | 2020.07.06 |
Baekjoon 백준 2751번 수 정렬하기 2 (0) | 2020.02.21 |
tesseract-OCR 환경변수 (0) | 2020.02.11 |
ncloud python3 boto3 s3 오브젝트 스토리지 업로드 예제 object storage upload example (0) | 2019.11.21 |
댓글
티스토리 방명록
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
Blog is powered by
Tistory / Designed by
Tistory
Contact: j0n9m1n1@gmail.com
Contact: j0n9m1n1@gmail.com