Skip to content

Commit fd035ce

Browse files
committed
2026년 04월 21일 13:38:58
1 parent 8869b3b commit fd035ce

2 files changed

Lines changed: 36 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# [3107] 연산기호
2+
### 채점 결과
3+
Accepted
4+
### 제출 일자
5+
2026년 04월 21일 13:38:58
6+
### 성능 요약[추후 구현 예정]
7+
- 메모리: N/A KB
8+
- 시간: N/A ms
9+
---
10+
### 문제 링크
11+
https://code.pusan.ac.kr/problem/3107
12+
### 난이도
13+
보통
14+
### 문제 설명
15+
두 개의 정수를 입력 받고두 정수의 더하기, 빼기, 곱하기, 나누기의 몫과 나머지를 구해봅시다.
16+
### 입력
17+
첫 번째 줄에는 정수 A를,두 번째 줄에는 정수 B를 입력합니다.
18+
### 출력
19+
공백으로 구분하여더하기(A+B), 빼기(A-B), 곱하기(A*B), 몫(A//B), 나머지(A%B)를 출력합니다.
20+
### 예제 입력/출력
21+
**예제 입력 1**
22+
```
23+
50
24+
60
25+
```
26+
**예제 출력 1**
27+
```
28+
110 -10 3000 0 50
29+
```
30+
### 제약 사항
31+
- 시간 제한 1000ms
32+
- 메모리 제한 256mb
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
A = int(input())
2+
B = int(input())
3+
4+
print(A+B, A-B, A*B, A//B, A%B)

0 commit comments

Comments
 (0)