-
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: A+B, Time: 8 ms, Memory: 69104 KB -BaekjoonHub
- Loading branch information
1 parent
e63caaa
commit fd6075c
Showing
2 changed files
with
31 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,3 @@ | ||
let input = readLine()!.split(separator: " ").map{Int($0)!} | ||
|
||
print(input[0] + input[1]) |
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,28 @@ | ||
# [Bronze V] A+B - 1000 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/1000) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 69104 KB, 시간: 8 ms | ||
|
||
### 분류 | ||
|
||
구현, 사칙연산, 수학 | ||
|
||
### 제출 일자 | ||
|
||
2025년 1월 25일 22:16:35 | ||
|
||
### 문제 설명 | ||
|
||
<p>두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)</p> | ||
|
||
### 출력 | ||
|
||
<p>첫째 줄에 A+B를 출력한다.</p> | ||
|