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
- hackerrank
- Kaggle
- Baekjoon
- 편스토랑 우승상품
- leetcode
- ubuntu
- 코로나19
- 맥북
- SW Expert Academy
- 더현대서울 맛집
- 자연어처리
- Docker
- programmers
- github
- 캐치카페
- gs25
- 프로그래머스
- dacon
- 프로그래머스 파이썬
- Real or Not? NLP with Disaster Tweets
- AI 경진대회
- ChatGPT
- 데이콘
- 파이썬
- PYTHON
- 금융문자분석경진대회
- 우분투
- 편스토랑
- Git
- 백준
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 2869번 : 달팽이는 올라가고 싶다 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 달팽이는 올라가고 싶다 입니다.
👨🏻💻 코드 ( Solution )
def snail_wants_to_climb(A, B, V):
snail_days = (V-B) / (A-B)
if snail_days != int(snail_days):
snail_days += 1
return int(snail_days)
if __name__ == "__main__":
A, B, V = map(int, input().split())
print(snail_wants_to_climb(A, B, V))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1453번 : 피시방 알바 (Python) (0) | 2022.01.17 |
---|---|
[BaekJoon] 18108번 : 1998년생인 내가 태국에서는 2541년생?! (Python) (0) | 2022.01.16 |
[BaekJoon] 3460번 : 이진수 (Python) (0) | 2022.01.14 |
[BaekJoon] 9085번 : 더하기 (Python) (0) | 2022.01.13 |
[BaekJoon] 2480번 : 주사위 세개 (Python) (0) | 2022.01.12 |
Comments