QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#623004 | #5721. Dividing by Two | TheZachMan | RE | 0ms | 0kb | Python3 | 210b | 2024-10-09 09:31:34 | 2024-10-09 09:31:35 |
answer
x. y = map(int,input())
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