#28624: python


jeter.nice@gmail.com (唯一)

學校 : 德明財經科技大學
編號 : 112857
來源 : [60.251.47.215]
最後登入時間 :
2023-04-16 13:02:46
b964. 1. 成績指標 -- 2016年3月apcs | From: [59.120.39.82] | 發表日期 : 2021-12-22 13:05

def fail_high(score):
    high = [i for i in score if i <60]
    return 'best case' if len(high) == 0 else max(high)
def fail_low(score):
    low = [i for i in score if i >=60]
    return 'worst case' if len(low) == 0 else min(low)
input()
score = [int(i) for i in input().split()]
score.sort()
print(" ".join([str(i) for i in score]))
print(fail_high(score))
print(fail_low(score))
 
ZeroJudge Forum