#30515: Python解


chiugt0817@gmail.com (Bonjour)

學校 : 臺北市立陽明高級中學
編號 : 157566
來源 : [223.136.30.133]
最後登入時間 :
2022-06-09 21:07:52
d984. 棄保效應 -- 板橋高中教學題 | From: [36.224.211.8] | 發表日期 : 2022-05-27 00:19

#我還想說這樣寫比較簡單 結果更複雜..
 
#想法
反正就是找max 然後移掉 再看剩餘的 兩個元素sum有沒有大於max
try:
  while True:
    dic ={0:"A", 1:"B", 2:"C"}
    list1 = [int(c) for c in input().split()]
    imax = list1.index(max(list1))
    Max =list1[imax] 
    list1[imax] = 0
    if Max>sum(list1):
      print(dic[imax]) 
    else:
      print(dic[list1.index(max(list1))])
except EOFError:
  pass
 
ZeroJudge Forum