A問題 ask Scheduling Problem
1 2 3 4 |
p = list(map(int, input().split())) q = sorted(p) ans = q[1]-q[0]+q[2]-q[1] print(ans) |
1 2 3 4 |
p = list(map(int, input().split())) q = sorted(p) ans = q[1]-q[0]+q[2]-q[1] print(ans) |
コメント