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
- gs25
- AI 경진대회
- 캐치카페
- github
- 맥북
- PYTHON
- 코로나19
- 우분투
- programmers
- ChatGPT
- 금융문자분석경진대회
- 백준
- hackerrank
- 더현대서울 맛집
- dacon
- Docker
- 데이콘
- 파이썬
- 편스토랑
- ubuntu
- Real or Not? NLP with Disaster Tweets
- Git
- Kaggle
- SW Expert Academy
- leetcode
- Baekjoon
- 프로그래머스 파이썬
- 프로그래머스
- 자연어처리
- 편스토랑 우승상품
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 17251번 : 힘 겨루기 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 17251번 힘 겨루기 입니다.
👨🏻💻 코드 ( Solution )
def fight_for_strength(players):
players = list(map(int, players.split()))
max_st, start, end = 0, 0, 0
for idx, player in enumerate(players):
if max_st < player:
max_st = player
start = idx
end = idx
elif max_st == player:
end = idx
if start > len(players) - end - 1:
result = "B"
elif start < len(players) - end - 1:
result = "R"
else:
result = "X"
return result
if __name__ == "__main__":
_ = input()
players = input()
print(fight_for_strength(players))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 3783번 : 세제곱근 (Python) (0) | 2021.09.16 |
---|---|
[BaekJoon] 7983번 : 내일 할거야 (Python) (0) | 2021.09.15 |
[BaekJoon] 11387번 : 님 무기가 좀 나쁘시네여 (Python) (0) | 2021.09.13 |
[BaekJoon] 2139번 : 나는 너가 살아온 날을 알고 있다 (Python) (0) | 2021.09.12 |
[BaekJoon] 12788번 : 제 2회 IUPC는 잘 개최될 수 있을까? (Python) (0) | 2021.09.11 |
Comments