반응형
1008번
https://www.acmicpc.net/problem/1008
a,b = input().split()
print(int(a)/int(b))
** 다른 분들 코드를 찾아보니 map함수를 쓰는게 더 나은 것 같음.**
x = input().split()
a,b = list(map(int, x))
print(a/b)
cf) map함수 설명 참고.
https://dojang.io/mod/page/view.php?id=2286
https://blockdmask.tistory.com/531
반응형
'공부 > 데이터사이언스' 카테고리의 다른 글
[백준] 2단계 - 2884번 (파이썬) (0) | 2022.06.19 |
---|---|
[백준] 2단계 - 2525번 (파이썬) (0) | 2022.06.19 |
[백준] 1단계 - 2557번, 10718번 (파이썬/C++) (0) | 2022.06.14 |
백준 문제풀이 도전해볼까? (0) | 2022.06.13 |
[Python] Jupyter notebook 다운로드 (0) | 2022.04.21 |
댓글