-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bronze V] Title: 엄청난 부자2, Time: 40 ms, Memory: 31120 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# [Bronze V] 엄청난 부자2 - 1271 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/1271) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 31120 KB, 시간: 40 ms | ||
|
||
### 분류 | ||
|
||
임의 정밀도 / 큰 수 연산, 사칙연산, 수학 | ||
|
||
### 제출 일자 | ||
|
||
2024년 1월 29일 23:23:35 | ||
|
||
### 문제 설명 | ||
|
||
<p>갑부 최백준 조교는 동전을 최소로 바꾸는데 성공했으나 김재홍 조교가 그 돈을 발견해서 최백준 조교에게 그 돈을 나누자고 따진다.</p> | ||
|
||
<p>그 사실이 전 우주로 알려지자 우주에 있던 많은 생명체들이 자신들에게 돈을 분배해 달라고 당장 달려오기 시작했다.</p> | ||
|
||
<p>프로토스 중앙 우주 정부의 정책인, ‘모든 지적 생명체는 동등하다’라는 규칙에 입각해서 돈을 똑같이 분배하고자 한다.</p> | ||
|
||
<p>한 생명체에게 얼마씩 돈을 줄 수 있는가?</p> | ||
|
||
<p>또, 생명체들에게 동일하게 분배한 후 남는 돈은 얼마인가?</p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에는 최백준 조교가 가진 돈 n과 돈을 받으러 온 생명체의 수 m이 주어진다. (1 ≤ m ≤ n ≤ 10<sup>1000</sup>, m과 n은 10진수 정수)</p> | ||
|
||
### 출력 | ||
|
||
<p>첫째 줄에 생명체 하나에게 돌아가는 돈의 양을 출력한다. 그리고 두 번째 줄에는 1원씩 분배할 수 없는 남는 돈을 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import sys | ||
|
||
num1, num2 = map(int, sys.stdin.readline().split()) | ||
|
||
print(num1 // num2) | ||
print(num1 % num2) |