Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 기계학습
- HTML
- 백준
- Sookmyung Information Security Study
- WarGame
- Python
- BOJ Python
- 숙명여자대학교 정보보안동아리
- 풀이
- 머신러닝
- lob
- 생활코딩
- 파이썬
- Javascript
- 자료구조 복습
- XSS Game
- CSS
- hackctf
- C언어
- 웹페이지 만들기
- 숙명여자대학교 정보보안 동아리
- c++
- c
- hackerrank
- SWEA
- 드림핵
- The Loard of BOF
- BOJ
- siss
- PHP 웹페이지 만들기
Archives
- Today
- Total
혜랑's STORY
[BOJ_Python] 2869번, 1620번 본문
#2896
- 풀이
A, B, V = map(int,input().split())
print((V-B-1)//(A-B)+1)
cf> '(V-A)/(A-B)' 사용 안한 이유 : 만약 4.1일이 된다면 5일이지만, 출력은 4로 되기 때문에 식이 성립되지 않는다.
- 도출식
달팽이가 k일째 정상이라면, 높이 <= A*K - B*(K-1) (A-B)*K >= V - k K >= (V-B-1)/(A-B) |
#1620
- 풀이
import sys
N, M = map(int,input().split())
number_pokemon = 1
pokemon_dict1 = {}
pokemon_dict2 = {}
for _ in range(N):
name = str(sys.stdin.readline()).strip()
pokemon_dict1[numver_pokemon] = name
pokemeon_diect2[name] = number_pokemon
number_pokemon += 1
answer = []
for _ in range(M):
pokemon = str(sys.stdin.readline()).strip()
try:
print(pokemon_dict1[int(pokemon)]
except:
print(pokemon_dict2[pokemon])
cf> 입력이 숫자면 문자출력, 입력이 문자면 숫자출력하기.
'무지성 공부방 > 알고리즘 해결' 카테고리의 다른 글
[BOJ_Python] 6603번 (0) | 2020.08.05 |
---|---|
[BOJ_C] 14889번 (0) | 2020.08.03 |
[BOJ_Python] 1431번, 1920번 (0) | 2020.07.21 |
[BOJ _Python] 11650번, 10814번 (0) | 2020.07.20 |
SWEA 7732번 (0) | 2020.07.14 |