Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146262 桂依然 14小鱼游泳 Python3 Wrong Answer 31 MS 3760 KB 129 2026-01-27 14:55:21

Tests(1/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*250 print(b) else: print((n-x)*250)


Run Info:

------Input------
2 47
------Answer-----
8500
------Your output-----
8250