#45072: Python 三行解


210039@sdhs.ntpc.edu.tw (502 10許祐菘)

學校 : 不指定學校
編號 : 275047
來源 : [203.204.210.131]
最後登入時間 :
2025-01-05 21:07:19
q181. 1. 等紅綠燈 -- 2025年1月APCS | From: [203.204.210.131] | 發表日期 : 2025-01-05 21:20

a, b = map(int, input().split())
n = int(input())
print(sum([(a+b)-i%(a+b) for i in list(map(int, input().split())) if i%(a+b) >= a]))
 
#45073: Re: Python 三行解


leeguanhan0909@gmail.com (李冠翰)

學校 : 高雄市苓雅區復華高級中學國中部
編號 : 276558
來源 : [36.238.143.24]
最後登入時間 :
2025-01-09 06:55:24
q181. 1. 等紅綠燈 -- 2025年1月APCS | From: [218.166.13.10] | 發表日期 : 2025-01-05 21:34

a, b = map(int, input().split())
n = int(input())
print(sum([(a+b)-i%(a+b) for i in list(map(int, input().split())) if i%(a+b) >= a]))

兩行解

 
ZeroJudge Forum