Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 동적계획법과최단거리역추적
- 안드로이드
- 코테
- AndroidStudio
- cos pro
- 분할정복
- BAEKJOON
- Algorithm
- C++
- vuejs
- cos pro 1급
- 동적계획법
- 파이썬
- DFS와BFS
- docker
- 백준
- 알고리즘
- DFS
- DART
- Flutter
- 개발
- android
- Python
- django
- 코드품앗이
- cos
- 안드로이드스튜디오
- 코딩테스트
- issue
- codingtest
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 4차 7번 : RPG스토리 본문
728x90
반응형
문제 유형
빈칸
난이도
easy
Note
1. 파이썬의 Class&def&self
Code
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
class Unit:
def __init__(self):
self.HP = 1000
def under_attack(self, damage):
pass
class Monster(Unit):
def __init__(self, attack_point):
super().__init__()
self.attack_point = attack_point
def under_attack(self, damage):
self.HP -= damage
def attack(self):
return self.attack_point
class Warrior(Unit):
def __init__(self, attack_point):
super().__init__()
self.attack_point = attack_point
def under_attack(self, damage):
self.HP -= damage
def attack(self):
return self.attack_point
class Healer(Unit):
def __init__(self, healing_point):
super().__init__()
self.healing_point = healing_point
def under_attack(self, damage):
self.HP -= damage
def healing(self, unit):
unit.HP += self.healing_point
def solution(monster_attack_point, warrior_attack_point, healing_point):
monster = Monster(monster_attack_point)
warrior = Warrior(warrior_attack_point)
healer = Healer(healing_point)
monster.under_attack(warrior.attack())
warrior.under_attack(monster.attack())
healer.under_attack(monster.attack())
healer.healing(warrior)
healer.healing(monster)
answer = [monster.HP, warrior.HP, healer.HP]
return answer
monster_attack_point = 100
warrior_attack_point = 90
healing_point = 30
ret = solution(monster_attack_point, warrior_attack_point, healing_point)
print("solution 함수의 반환 값은", ret, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 4차 9번 : 분침과 시침의 각도 구하기 (0) | 2022.02.25 |
---|---|
[COS Pro 1급, Python] 4차 8번 : n번째로 작은 수 구하기 (1) | 2022.02.25 |
[COS Pro 1급, Python] 4차 6번 : 자아도취 수 (0) | 2022.02.25 |
[COS Pro 1급, Python] 4차 5번 : 규칙에 맞는 숫자 생성 (0) | 2022.02.25 |
[COS Pro 1급, Python] 4차 4번 : 마방진 문제 (0) | 2022.02.25 |
Comments