Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146244 谢尚昊 14小鱼游泳 Python3 Wrong Answer 27 MS 3760 KB 121 2026-01-27 14:22:11

Tests(4/10):


Code:

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


Run Info:

------Input------
4 76
------Answer-----
13500
------Your output-----
13250