반응형
Recent Posts
Notice
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- python 10989
- python 10250
- til
- 99항해
- leetcode 2405
- 스택
- 프로그래머스
- 백준 카드1
- leetcode
- Python
- 항해99
- python 1259
- 백준 막대기
- boj 2309
- 백준 팰린드롬수
- 파이썬
- 백준
- 코딩테스트 준비
- 큐
- 백준 2309
- Python 20001
- python 14503
- BOJ
- 구현
- softeer
- 일곱 난쟁이
- BFS
- 개발자 취업
- python 2309
- 99클럽
Archives
- Today
- Total
동까의 코딩
[Python] 백준 2083 : 럭비 클럽 본문
반응형
https://www.acmicpc.net/problem/2083
간단한 구현 문제인 럭비 클럽 문제를 풀어보았습니다.
input split을 통해 이름 나이 몸무게를 입력 받아 17세보다 많거나, 몸무게가 80kg 이상인 경우를 나눠주어 Senior와 Junior를 나눠주는 코드를 작성하였습니다.
while True:
sentence, age, weight = input().split(' ')
club = 0
if sentence == '#':
break
if int(age) > 17 or int(weight) >= 80:
club = 'Senior'
else:
club = 'Junior'
sentence = sentence + ' ' + club
print(sentence)
오늘도 감사합니다.
반응형
'문제 풀이 > 백준' 카테고리의 다른 글
[Python] 백준 1874 : 스택 수열 (0) | 2024.03.09 |
---|---|
[Python] 백준 2920 : 음계 (0) | 2024.03.09 |
[Python] 백준 1264 : 모음의 개수 (0) | 2024.03.05 |
[Python] 백준 2798 : 블랙잭 (2) | 2024.03.04 |
[Python] 백준 7576 : 토마토 (0) | 2024.02.27 |