距離上次更新已有 1177 天,文章內容可能已過時。

題目

解答

python
1
2
3
4
5
6
7
import math
while True:
try:
n = [eval(i) for i in input().split()]
print((lambda sum:'no' if math.ceil(sum/n[0])//1>59 else 'yes')(sum(n[1::])))
except:
break