alpyrithm_알파이리즘
[알고리즘][Python] 백준(BOJ) 2557 Hello World, 1000/2558/10950/10951/10952/10953/11021/11022 A+B 파이썬 본문
Algorithm/백준 알고리즘_Python
[알고리즘][Python] 백준(BOJ) 2557 Hello World, 1000/2558/10950/10951/10952/10953/11021/11022 A+B 파이썬
알파이 2020. 3. 15. 15:37입출력(1)
알고리즘의 가장 기본인 입출력 문제들
2557 Hello World https://www.acmicpc.net/problem/2557
풀이
print('Hello World!')
1000 A+B https://www.acmicpc.net/problem/1000
풀이
a, b = map(int, input().split(' '))
print(a+b)
2558 A+B - 2 https://www.acmicpc.net/problem/2558
풀이
a = int(input())
b = int(input())
print(a+b)
10950 A+B - 3 https://www.acmicpc.net/problem/10950
풀이
t = int(input())
for _ in range(t):
a, b = map(int, input().split(' '))
print(a+b)
10951 A+B - 4 https://www.acmicpc.net/problem/10951
풀이
while True:
try:
a, b = map(int, input().split(' '))
print(a+b)
except:
break
10952 A+B - 5 https://www.acmicpc.net/problem/10952
풀이
while True:
a, b = map(int, input().split(' '))
if a == 0 and b == 0:
break
print(a+b)
10953 A+B - 6 https://www.acmicpc.net/problem/10953
풀이
t = int(input())
for _ in range(t):
a, b = map(int, input().split(','))
print(a+b)
11021 A+B - 7 https://www.acmicpc.net/problem/11021
풀이
t = int(input())
for i in range(1, t+1):
a, b = map(int, input().split(' '))
print('Case #%d: %d' %(i, a+b))
11022 A+B - 8 https://www.acmicpc.net/problem/11022
풀이
t = int(input())
for i in range(1, t+1):
a, b = map(int, input().split(' '))
print('Case #%d: %d + %d = %d' %(i, a, b, a+b))
728x90
반응형
'Algorithm > 백준 알고리즘_Python' 카테고리의 다른 글
Comments