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 |
Tags
- 설계
- css
- html
- Python3
- sql
- count
- YOLOv5
- pcce 기출문제
- 프로젝트
- GIT
- map
- 백준
- date_format
- 파이썬 슬라이싱
- Join
- 슬라이싱
- 파이썬
- 데이터
- 코딩테스트 연습
- Django
- ORDER BY
- python
- 단어 공부
- SQL 고득점 Kit
- Len
- List Comprehension
- 프로그래머스
- 아이엠어바텐더
- 파이썬 몫
- where
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