[A+B-2]-2558번
My answer
a,b=int(input()),int(input())
print(a+b)
Another answer
print(sum(map(int,open(0))))
[A+B-3]-10950번
My answer
for _ in range(int(input())):
print(sum(map(int,input().split())))
[A+B-4]-10951번
Another answer
while True:
try:
a, b = map(int, input().split())
print(a+b)
except:
break
----------------------------
while True:
try:
A, B = map(int, input().split())
print(A+B)
except EOFError:
break
------------------------------
import sys
for L in sys.stdin:
print(sum(map(int, L.split())))
더보기
이문제는 따로 멈추는 조건을 설정해주지 않은 문제라서 eof를 통해서 멈추게 해야한다. eof란, end of file을 의미하며 위에 적어놓은 방법들처럼 sys를 사용하거나 try-except문을 사용해서 해결한다고 한다.
[A+B-5]-10952번
My answer
while True:
a, b = map(int, input().split())
if(a==0&b==0):
break
print(a+b)
[A+B-6]-10953번
My answer
for _ in range(int(input())):
print(sum(map(int,input().split(","))))
[A+B-7]-11021번
My answer
for i in range(1,int(input())+1):
print("Case #%d:"%i,sum(map(int,input().split())))
더보기
파이썬 입출력에서는 다양한 형식이있는데 띄어쓰기에 따라 출력형식도 바꿔줘야 하는 것 같다.
[A+B-8]-11022번
My answer
for i in range(1,int(input())+1):
a,b=map(int,input().split())
print("Case #%d: %d + %d = %d"%(i,a,b,a+b))
728x90
반응형
'코딩테스트 > 백준[Python]' 카테고리의 다른 글
[Python/백준] #2875 - [대회 or 인턴] (0) | 2021.11.22 |
---|---|
[Python/백준] #2447 - [별 찍기-10] (0) | 2021.11.21 |
[Python/백준] #3085 -[사탕게임] (0) | 2021.11.19 |
[Python/백준] #1062 - [가르침] [try_again] (0) | 2021.11.16 |
[Python/백준] #14719 - [빗물] (0) | 2021.11.15 |