Run ID:146246

提交时间:2026-01-27 14:26:08

x,n=map(int,input().split()) t=n for i in range(n): day = (x + i) % 7 if day == 6 or day == 0: # 周六或周日 t = t - 1 m=t*250 print(m)