QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#623001 | #5721. Dividing by Two | DaAsianCarsten# | RE | 0ms | 0kb | Python3 | 194b | 2024-10-09 09:29:46 | 2024-10-09 09:29:47 |
answer
a = int(input())
b = int(input())
count = 0
while a > b:
if a%2==0:
a /= 2
count += 1
else:
a += 1
count += 1
count += b-a
print(count)
详细
Test #1:
score: 0
Dangerous Syscalls
input:
103 27