Start: Nov, 12, 2017 10:00:00
2017秋Python程序设计基础培训第四次作业
End: Nov, 19, 2017 12:00:00
Time elapsed:
Time remaining:

Problem_ID: C
Result: Accepted
Time: 97ms
Memory: 24436kB
Author: shanzhenyu
In contest: 1124

n,m = list(map(int, input().split()))
d = {10:"A",9:"A",8:"B",7:"C",6:"OK"}
a = {}
for t in range(n):
    s = input().split()
    a[s[0]] = [s[1],int(s[2])]

for t in range(m):
    score = a[input()][1]
    if score >= 60:
        print(d[score//10])
    else:
        print("ARE YOU PIG? ")