[Baekjoon Online Judge] 백준 11021번 A+B - 7
(Python)
(글쓴날 : 2020.02.28)
* Baekjoon Online Judge, 백준 11021번 문제 Python 언어 풀이입니다.
* 소스 코드의 저작권은 글쓴이에게 있습니다.
백준 11021번 A+B - 7
1) 문제
문제 링크 : https://www.acmicpc.net/problem/11021
2) 풀이 과정
앞선 문제들과 다르지 않은 문제입니다.
반복 제어 횟수를 입력받아 그 횟수만큼 반복문을 돌리고, 두 수를 입력받아 두 수의 합을 줄마다 출력해 주시면 되겠습니다.
다만, 출력하실 때 문제에 예시로 나와있는 형식에 맞추어 출력해 주셔야 합니다.
3) 코드
* Python 코드
1
2
3
4
5
6
|
import sys
input = sys.stdin.readline
for i in range(int(input())):
a, b = map(int, input().split())
print("Case #%d: %d" % (i + 1, a + b))
|
'Deprecated' 카테고리의 다른 글
[Baekjoon Online Judge] 백준 2438번 별 찍기 - 1(Python) (0) | 2020.02.28 |
---|---|
[Baekjoon Online Judge] 백준 11022번 A+B - 8(Python) (0) | 2020.02.28 |
[Baekjoon Online Judge] 백준 2742번 기찍 N(Python, Go) (0) | 2020.02.28 |
[Baekjoon Online Judge] 백준 2741번 N 찍기(Python) (0) | 2020.02.28 |
[Baekjoon Online Judge] 백준 15552번 빠른 A+B(Python) (0) | 2020.02.28 |