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 |
Tags
- 편스토랑 우승상품
- Docker
- 데이콘
- 자연어처리
- 맥북
- 코로나19
- github
- 우분투
- 더현대서울 맛집
- dacon
- leetcode
- Kaggle
- 프로그래머스
- AI 경진대회
- gs25
- 백준
- Git
- Baekjoon
- hackerrank
- 프로그래머스 파이썬
- 파이썬
- ubuntu
- PYTHON
- 캐치카페
- Real or Not? NLP with Disaster Tweets
- 금융문자분석경진대회
- ChatGPT
- programmers
- SW Expert Academy
- 편스토랑
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 17388번 : 와글와글 숭고한 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 와글와글 숭고한 입니다.
👨🏻💻 코드 ( Solution )
def check_is_ok(S, K, H):
is_ok = True
if S + K + H < 100:
is_ok = False
return is_ok
def find_min_min_participant(S, K, H):
min_participant = "OK"
is_ok = check_is_ok(S, K, H)
if not is_ok:
min_participation_point = min([S, K, H])
if min_participation_point == S:
min_participant = "Soongsil"
elif min_participation_point == K:
min_participant = "Korea"
elif min_participation_point == H:
min_participant = "Hanyang"
return min_participant
def waggle_waggle_soong_ko_han(S, K, H):
answer = "OK"
min_participant = find_min_min_participant(S, K, H)
return min_participant
if __name__ == "__main__":
S, K, H = map(int, input().split())
print(waggle_waggle_soong_ko_han(S, K, H))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 4766번 : 일반 화학 실험 (Python) (0) | 2022.07.25 |
---|---|
[BaekJoon] 4435번 : 중간계 전쟁 (Python) (0) | 2022.07.24 |
[BaekJoon] 2587번 : 대표값2 (Python) (0) | 2022.07.22 |
[BaekJoon] 17362번 : 수학은 체육과목 입니다 2 (Python) (0) | 2022.07.21 |
[BaekJoon] 25372번 : 성택이의 은밀한 비밀번호 (Python) (0) | 2022.07.19 |
Comments