250x250
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 |
Tags
- 단어 공부
- 프로젝트
- 슬라이싱
- 데이터
- pcce 기출문제
- SQL 고득점 Kit
- Join
- sql
- count
- 코딩테스트 연습
- 설계
- python
- date_format
- 파이썬
- where
- 프로그래머스
- html
- css
- ORDER BY
- 아이엠어바텐더
- map
- Django
- List Comprehension
- 파이썬 슬라이싱
- 파이썬 몫
- Len
- 백준
- GIT
- Python3
- YOLOv5
Archives
- Today
- Total
nan + nan = 2nan
[백준] [Python3] #1008. A / B 본문
728x90
코드 입력
A, B = map(int,input().split())
print(A / B)
이것 또한 앞서 설명한 사칙연산과 동일한 알고리즘을 사용한다.
출처 : 백준 Online Judge
https://www.acmicpc.net/problem/1008
'Python > 백준 알고리즘' 카테고리의 다른 글
[백준] [Python3] #10430. 나머지 (0) | 2021.08.03 |
---|---|
[백준] [Python3] #10869. 사칙연산 (0) | 2021.08.03 |
[백준] [Python3] #10998. A X B (0) | 2021.08.03 |
[백준] [Python3] #1001. A - B (0) | 2021.08.03 |
[백준] [Python3] #1000. A + B (0) | 2021.08.03 |
Comments