DevHyun

1단계 - 입출력과 사칙연산 - A+B, A-B, A*B, A/B 본문

Algorithm/baekjoon online judge

1단계 - 입출력과 사칙연산 - A+B, A-B, A*B, A/B

D3V3L0P3R 2020. 10. 16. 09:59

 

www.acmicpc.net/problem/1000

www.acmicpc.net/problem/1001

www.acmicpc.net/problem/10998

www.acmicpc.net/problem/1008

 

1008번: A/B

두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

python 3

 

1. input만 사용하기

* input('print 될 문구?').split(',')

: 입력받은 값을 콤마를 기준으로 분리

a, b = input().split()
a = int(a)
b = int(b)

print(a+b)
print(a-b)
print(a*b)
print(a/b)

 

 

2. map 사용하기!

: 입력받은 자료형의 각 요소가 합수에 의해 수행된 결과를 묶어서 map iterator 객체로 리턴(내장함수)

 

* map(int, input('print 될 문구?').split(','))

: 입력받은 값을 콤마를 기준으로 분리

 

a, b = map(int, input().split())
print(a+b)
print(a-b)
print(a*b)
print(a/b)

 

결과는 똑같이 68ms ㅎㅎ

 

 

Comments