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
- 더현대서울 맛집
- 자연어처리
- hackerrank
- 파이썬
- SW Expert Academy
- PYTHON
- 캐치카페
- 데이콘
- 프로그래머스
- ChatGPT
- leetcode
- Kaggle
- 백준
- Real or Not? NLP with Disaster Tweets
- gs25
- ubuntu
- Docker
- 우분투
- AI 경진대회
- 맥북
- 코로나19
- 프로그래머스 파이썬
- 편스토랑 우승상품
- Baekjoon
- 편스토랑
- github
- 금융문자분석경진대회
- dacon
- Git
- programmers
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 5523번 : 경기 결과 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 경기 결과 입니다.
👨🏻💻 코드 ( Solution )
import sys
def match_result(match_scores):
a_team, b_team = 0, 0
for score in match_scores:
a_score, b_score = score[0], score[1]
if a_score > b_score:
a_team += 1
elif a_score < b_score:
b_team += 1
return f"{a_team} {b_team}"
if __name__ == "__main__":
N = int(sys.stdin.readline())
match_scores = []
for _ in range(N):
a_score, b_score = map(int, sys.stdin.readline().split())
match_scores.append((a_score, b_score))
print(match_result(match_scores))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 8370번 : Plane (Python) (0) | 2022.05.10 |
---|---|
[BaekJoon] 6749번 : Next in line (Python) (0) | 2022.05.09 |
[BaekJoon] 1235번 : 학생 번호 (Python) (0) | 2022.05.07 |
[BaekJoon] 14918번 : 더하기 (Python) (0) | 2022.05.06 |
[BaekJoon] 16199번 : 나이 계산하기 (Python) (0) | 2022.05.05 |
Comments