← Back to List

29790번: 임스의 메이플컵 ↗

Solutions

Python 3
148 B | 148 chars
N, U, L = map(int, input().split())

if N >= 1000:
  if U >= 8000 or L >= 260:
    print("Very Good")
  else:
    print("Good")
else:
  print("Bad")