#34816: Python程式解答(有設定,同學數量不對,就不給輸入)


qwea6935@gmail.com (板弟)

學校 : 不指定學校
編號 : 231418
來源 : [114.25.152.134]
最後登入時間 :
2023-04-18 23:22:01
b964. 1. 成績指標 -- 2016年3月apcs | From: [114.25.152.134] | 發表日期 : 2023-04-18 23:25

n = int(input())
sc = sorted(list(map(int,input().split())))
num_of_g = len(sc)

if num_of_g != n:
    print("成績跟同學數量不對")

print(*sc)

if sc[0] >= 60:
    print("best case")
else:
    s = list(filter(lambda x:x < 60, sc))[-1]
    print(s)

if sc[-1] < 60:
    print("worst case")
else:
    s = list(filter(lambda x:x >= 60, sc))[0]
    print(s)

 
ZeroJudge Forum