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

Problem_ID: B
Result: Accepted
Time: 37ms
Memory: 21432kB
Author: 13566300713
In contest: 1085

#!/user/bin/python
# -*- coding: UTF-8 -*-
list1 = ['cyp', 'mwy', 'zp', 'wxa', 'zl', 'yl', 'cjc', 'ydw', 'sjy', 'wjn', 'lsc', 'wzj', 'zry', 'cjf']
list2 = [170,165,175,175,160,175,180,180,165,165,170,170,170,170]
c=0
while c<=13:
    if list2[c] > 150:
        print list1[c]
    c=c+1