python-algorithm
백준 26500 Absolutely
무적김두칠
2022. 12. 24. 12:37
https://www.acmicpc.net/problem/26500
26500번: Absolutely
The first line contains a single positive integer, n, indicating the number of data sets. Each data set is on a separate line and contains two values on the number line, separated by a single space.
www.acmicpc.net
1
2
3
4
5
6
7
8
9
|
def sol(a, b):
answer = max(a,b) - min(a,b)
return answer
if __name__ == '__main__':
n = int(input())
for _ in range(n):
a, b = map(float, input().split())
print('%.1f'%sol(a, b))
|
cs |
반응형