Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Real or Not? NLP with Disaster Tweets
- Git
- 더현대서울 맛집
- 맥북
- 데이콘
- 편스토랑 우승상품
- ChatGPT
- 자연어처리
- 파이썬
- gs25
- 우분투
- PYTHON
- programmers
- github
- dacon
- 프로그래머스
- 편스토랑
- ubuntu
- 금융문자분석경진대회
- Docker
- Kaggle
- hackerrank
- 코로나19
- 캐치카페
- AI 경진대회
- leetcode
- 백준
- SW Expert Academy
- Baekjoon
- 프로그래머스 파이썬
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 4435번 : 중간계 전쟁 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 중간계 전쟁 입니다.
👨🏻💻 코드 ( Solution )
def gandalf_vs_sauron(battle):
gandalf_soldier_score_info = [1, 2, 3, 3, 4, 10]
sauron_soldier_score_info = [1, 2, 2, 2, 3, 5, 10]
gandalf_soldier_list, sauron_soldier_list = battle[0], battle[1]
gandalf_total_score = sum([(gandalf_solider * gandalf_soldier_score) for
gandalf_solider, gandalf_soldier_score in
zip(gandalf_soldier_list, gandalf_soldier_score_info)])
sauron_total_score = sum([(sauron_solider * sauron_soldier_score) for
sauron_solider, sauron_soldier_score in
zip(sauron_soldier_list, sauron_soldier_score_info)])
if gandalf_total_score > sauron_total_score:
winner = "gandalf"
elif gandalf_total_score == sauron_total_score:
winner = "no one"
else:
winner = "sauron"
return winner
def middle_earth_war(battle_list):
battle_str_dict = {
"gandalf": "Good triumphs over Evil",
"sauron": "Evil eradicates all trace of Good",
"no one": "No victor on this battle field"
}
for battle_idx, battle in enumerate(battle_list, start=1):
winner = gandalf_vs_sauron(battle=battle)
print(f"Battle {battle_idx}: {battle_str_dict[winner]}")
if __name__ == "__main__":
battle_list = []
for _ in range(int(input())):
gandalf_soldier_list = list(map(int, input().split()))
sauron_soldier_list = list(map(int, input().split()))
battle_detail = [gandalf_soldier_list, sauron_soldier_list]
battle_list.append(battle_detail)
middle_earth_war(battle_list)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 17356번 : 욱 제 (Python) (0) | 2022.07.26 |
---|---|
[BaekJoon] 4766번 : 일반 화학 실험 (Python) (0) | 2022.07.25 |
[BaekJoon] 17388번 : 와글와글 숭고한 (Python) (0) | 2022.07.23 |
[BaekJoon] 2587번 : 대표값2 (Python) (0) | 2022.07.22 |
[BaekJoon] 17362번 : 수학은 체육과목 입니다 2 (Python) (0) | 2022.07.21 |
Comments