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

Problem_ID: F
Result: Accepted
Time: 86ms
Memory: 24300kB
Author: th000
In contest: 1122

list=[]
num=int(input())
list.append(num)
i=1
while i<=num:
    a=int(input())
    list.append(a)
    i=i+1
i=1
while i<=list[0]:    
    t1=27+23+list[i]/3
    t2=list[i]/1.2
    if t1>t2:
        print("Walk")
    elif t1<t2:
        print("Bike")
    elif t1==t2:
        print("All")
    i=i+1