NC54539. 小乐乐是否被叫家长
描述
输入描述
一行,输入三个整数(表示小乐乐的数学、语文、英语的成绩),用空格分隔。
输出描述
一行,如果小乐乐会被请家长则输出“YES”,否则输出“NO”。
示例1
输入:
80 60 50
输出:
NO
示例2
输入:
70 55 40
输出:
YES
pypy3 解法, 执行用时: 74ms, 内存消耗: 21228K, 提交时间: 2023-07-22 15:33:45
a,b,c=map(int,input().split()) x=(a+b+c)/3 print("NO") if x>=60 else print("YES")
Python(2.7.3) 解法, 执行用时: 13ms, 内存消耗: 2916K, 提交时间: 2019-11-08 17:43:11
a = map(int, raw_input().split()) print "YES" if sum(a) / 3 < 60 else "NO"
Python3 解法, 执行用时: 43ms, 内存消耗: 4520K, 提交时间: 2022-04-07 15:50:22
print('YES'if eval(input().replace(' ','+'))<180else'NO')