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
- 캐치카페
- 데이콘
- ChatGPT
- PYTHON
- SW Expert Academy
- 프로그래머스 파이썬
- 자연어처리
- 맥북
- 편스토랑 우승상품
- hackerrank
- 더현대서울 맛집
- Kaggle
- Docker
- 편스토랑
- 프로그래머스
- 우분투
- dacon
- leetcode
- Git
- gs25
- ubuntu
- 파이썬
- AI 경진대회
- Real or Not? NLP with Disaster Tweets
- github
- 금융문자분석경진대회
- Baekjoon
- 코로나19
- programmers
- 백준
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 1362번 : 펫 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 펫 입니다.
👨🏻💻 코드 ( Solution )
class Pet:
def __init__(self, o, w):
self.proper_weight = o
self.real_weight = w
self.status = ":-("
def check_status(self):
if self.proper_weight * 0.5 < self.real_weight < self.proper_weight * 2:
self.status = ":-)"
elif self.real_weight <= 0:
self.status = "RIP"
else:
self.status = ":-("
return self.status
def excercise(self, n):
self.real_weight = self.real_weight - int(n)
def feed(self, n):
self.real_weight = self.real_weight + int(n)
def input_scenario():
total_scenario = []
each_scenario = []
while True:
scenario = input()
if scenario == "0 0":
break
if scenario == "# 0":
total_scenario.append(each_scenario)
each_scenario = []
continue
each_scenario.append(scenario)
return total_scenario
def pet_game(scenario_list):
pet_status_list = []
for total_scenario_num, each_scenario_list in enumerate(scenario_list, start=1):
pet_status = None
for each_scenario_num, each_scenario in enumerate(each_scenario_list):
split_scenario = each_scenario.split()
if each_scenario_num == 0:
o, w = map(int, each_scenario.split())
new_pet = Pet(o, w)
continue
if split_scenario[0] == "F":
new_pet.feed(n=split_scenario[1])
elif split_scenario[0] == "E":
new_pet.excercise(n=split_scenario[1])
pet_status = new_pet.check_status()
if pet_status == "RIP":
break
pet_status_list.append(f"{total_scenario_num} {pet_status}")
return pet_status_list
if __name__ == "__main__":
scenario_list = input_scenario()
pet_status_list = pet_game(scenario_list=scenario_list)
for pet_status in pet_status_list:
print(pet_status)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 25314번 : 코딩은 체육과목 입니다 (Python) (0) | 2022.07.10 |
---|---|
[BaekJoon] 11945번 : 뜨거운 붕어빵 (Python) (0) | 2022.07.08 |
[BaekJoon] 2729번 : 이진수 덧셈 (Python) (0) | 2022.07.05 |
[BaekJoon] 8974번 : 희주의 수학시험 (Python) (0) | 2022.07.04 |
[BaekJoon] 19944번 : 뉴비의 기준은 뭘까? (Python) (0) | 2022.07.03 |
Comments