-Code
nums = []
for _ in range(int(input())):
a, b = map(int, input().split())
nums.append(a / b)
print(f"{min(nums):.10f} {max(nums):.10f} {sum(nums):.10f}")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 31520번 Champernowne Verification (0) | 2024.03.06 |
---|---|
[백준/파이썬] 31518번 Triple Sevens (0) | 2024.03.05 |
[백준/파이썬] 31495번 그게 무슨 코드니.. (0) | 2024.03.04 |
[백준/파이썬] 12250번 New Lottery Game (Small) (0) | 2024.03.02 |
[백준/파이썬] 31450번 Everyone is a winner (0) | 2024.03.01 |