Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146269 桂依然 14小鱼游泳 Python3 Accepted 32 MS 3768 KB 146 2026-01-27 15:08:54

Tests(10/10):


Code:

x,n=map(int,input().split()) t=0 c=x for i in range(n): if c not in (6,7): t+=250 c+=1 if c>7: c=1 print(t)