NP37. 不低于与不超过
描述
输入描述
输出描述
示例1
输入:
1.2 2.0 1.1
输出:
True True
说明:
Python 3 解法, 执行用时: 32ms, 内存消耗: 4500KB, 提交时间: 2022-08-01
k, x, y = input().split(" ") k = float(k) x = float(x) y = float(y) print(k<=x) print(k >= y)
Python 3 解法, 执行用时: 32ms, 内存消耗: 4504KB, 提交时间: 2022-08-04
k,x,y=input().split() print(k<=x) print(k>=y)
Python 3 解法, 执行用时: 32ms, 内存消耗: 4524KB, 提交时间: 2022-08-04
k,x,y = input().split() print(float(k) <= float(x)) print(float(k) >= float(y))
Python 3 解法, 执行用时: 32ms, 内存消耗: 4532KB, 提交时间: 2022-07-31
a=input().split() print(a[0]<=a[1]) print(a[0]>=a[2])
Python 3 解法, 执行用时: 32ms, 内存消耗: 4536KB, 提交时间: 2022-08-03
s = input().split(' ') print(s[0] <= s[1]) print(s[0] >= s[2])