距離上次更新已有 1177 天,文章內容可能已過時。題目 a148: You Cannot Pass?!https://zerojudge.tw/ShowProblem?problemid=a148 解答 python1234567import mathwhile 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