#45059: python


s210367@student.cysh.cy.edu.tw (張少謙)

學校 : 國立嘉義高級中學
編號 : 263937
來源 : [36.232.110.106]
最後登入時間 :
2025-01-02 21:22:02
q181. 1. 等紅綠燈 -- 2025年1月APCS | From: [36.232.119.129] | 發表日期 : 2025-01-05 20:02

g, r = map(int, input().split())
n = int(input())
time = list(map(int, input().split()))
rg = g + r
wtime = 0
for a in time:
    if (a % rg) >= g:
        wtime += (rg - (a % rg))
print(wtime)
 
ZeroJudge Forum