QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#623005 | #5721. Dividing by Two | TheZachMan | RE | 0ms | 0kb | Python3 | 218b | 2024-10-09 09:31:55 | 2024-10-09 09:31:56 |
answer
x. y = map(int,input().split())
def f(a, b):
if a < b:
return b - a
else:
if a%2 == 0:
return 1 + f(a//2, b)
else:
return 1 + f(a+1, b)
print(f(x,y))
詳細信息
Test #1:
score: 0
Dangerous Syscalls
input:
103 27