문제


ex)
2
1 2 3
3 2 4
출력
한 줄에 하나씩 정답을 출력한다.
ex)
1
2
코드
import sys
T=int(sys.stdin.readline())
for _ in range(T):
num=list(map(int,sys.stdin.readline().split()))
print(min(num))
'Python > 백준 python' 카테고리의 다른 글
[파이썬/python] 백준 16199번 나이 계산하기 (0) | 2023.03.13 |
---|---|
[파이썬/python] 백준 27866번 문자와 문자열 (0) | 2023.03.10 |
[파이썬/python] 백준 17466번 N! mod P (1) (0) | 2023.03.03 |
[파이썬/python] 백준 10419번 지각 (0) | 2023.03.02 |
[파이썬/python] 백준 6996번 애너그램 (0) | 2023.02.27 |