Start: Apr, 17, 2017 10:00:00
Python程序设计基础培训第四次作业
End: Apr, 23, 2017 14:00:00
Time elapsed:
Time remaining:

Problem_ID: C
Result: Accepted
Time: 150ms
Memory: 21432kB
Author: shanzhenyu
In contest: 1088

n,m = map(int,raw_input().strip().split())
d = {}
for i in range(n):
	a = raw_input().strip().split()
	d[a[0]] = int(a[2])

for j in range(m):
	s = d[raw_input()]
	if s>=90:
		print "A"
	elif s>=80:
		print "B"
	elif s>=70:
		print "C"
	elif s>=60:
		print "OK"
	else:
		print "ARE YOU PIG?"