Skip to content

Commit

Permalink
[level 0] Title: 두 수의 나눗셈, Time: 0.00 ms, Memory: 10.1 MB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
2sojeong committed May 22, 2024
1 parent 523136a commit afd229f
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
84 changes: 84 additions & 0 deletions 프로그래머스/0/120806. 두 수의 나눗셈/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# [level 0] 두 수의 나눗셈 - 120806

[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/120806)

### 성능 요약

메모리: 10.1 MB, 시간: 0.00 ms

### 구분

코딩테스트 연습 > 코딩테스트 입문

### 채점결과

정확성: 100.0<br/>합계: 100.0 / 100.0

### 제출 일자

2024년 05월 23일 01:11:03

### 문제 설명

<p>정수 <code>num1</code>과 <code>num2</code>가 매개변수로 주어질 때, <code>num1</code>을 <code>num2</code>로 나눈 값에 1,000을 곱한 후 정수 부분을 return 하도록 soltuion 함수를 완성해주세요.</p>

<hr>

<h4>제한사항</h4>

<ul>
<li>0 &lt; <code>num1</code> ≤ 100</li>
<li>0 &lt; <code>num2</code> ≤ 100</li>
</ul>

<hr>

<h4>입출력 예</h4>
<table class="table">
<thead><tr>
<th>num1</th>
<th>num2</th>
<th>result</th>
</tr>
</thead>
<tbody><tr>
<td>3</td>
<td>2</td>
<td>1500</td>
</tr>
<tr>
<td>7</td>
<td>3</td>
<td>2333</td>
</tr>
<tr>
<td>1</td>
<td>16</td>
<td>62</td>
</tr>
</tbody>
</table>
<hr>

<h4>입출력 예 설명</h4>

<p>입출력 예 #1</p>

<ul>
<li><code>num1</code>이 3, <code>num2</code>가 2이므로 3 / 2 = 1.5에 1,000을 곱하면 1500이 됩니다.</li>
</ul>

<p>입출력 예 #2</p>

<ul>
<li><code>num1</code>이 7, <code>num2</code>가 3이므로 7 / 3 = 2.33333...에 1,000을 곱하면 2333.3333.... 이 되며, 정수 부분은 2333입니다.</li>
</ul>

<p>입출력 예 #3</p>

<ul>
<li><code>num1</code>이 1, <code>num2</code>가 16이므로 1 / 16 = 0.0625에 1,000을 곱하면 62.5가 되며, 정수 부분은 62입니다.</li>
</ul>


> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
def solution(num1, num2):
a=num1/num2
a*=1000
answer=int(a)
return answer

0 comments on commit afd229f

Please sign in to comment.