Python 3, (削除) 49 (削除ここまで) 46(削除) 46 (削除ここまで) 45 bytes
3 bytes removed thanks to @Mr.Xcoder (splat instead of two arguments), and 1 byte thanks to @ovs (map instead of list comprehension)
lambda*x:[a*map(lambda a,b:a*(a>=b)+b*(b>=a)for a,b in zip(*x)]
Python 3, (削除) 49 (削除ここまで) 46 bytes
3 bytes removed thanks to @Mr.Xcoder
lambda*x:[a*(a>=b)+b*(b>=a)for a,b in zip(*x)]
Python 3, (削除) 49 (削除ここまで) (削除) 46 (削除ここまで) 45 bytes
3 bytes removed thanks to @Mr.Xcoder (splat instead of two arguments), and 1 byte thanks to @ovs (map instead of list comprehension)
lambda*x:map(lambda a,b:a*(a>=b)+b*(b>=a),*x)
Python 3, 49(削除) 49 (削除ここまで) 46 bytes
3 bytes removed thanks to @Mr.Xcoder
lambda x,ylambda*x:[a*(a>=b)+b*(b>=a)for a,b in zip(x,y*x)]
Python 3, (削除) 49 (削除ここまで) 46 bytes
3 bytes removed thanks to @Mr.Xcoder
lambda*x:[a*(a>=b)+b*(b>=a)for a,b in zip(*x)]