Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146263 毛梦瑶 14小鱼游泳 Python3 Accepted 34 MS 3760 KB 125 2026-01-27 14:55:59

Tests(10/10):


Code:

x,n=map(int,input().split()) m=0 for i in range(n%7): if 0<(x+i)%7<=5: m+=1 sum=(n//7*5+m)*250 print(sum)