Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146264 桂依然 14小鱼游泳 Python3 Wrong Answer 32 MS 3756 KB 137 2026-01-27 14:58:05

Tests(0/10):


Code:

x,n=map(int,input().split()) z=n+x if z>=7: a=z//7 b=a*5*250+z%7*250-(x-1)*250 print(b) else: print((n-x)*250)


Run Info:

------Input------
5 52
------Answer-----
9000
------Your output-----
9250