NC216188. CookPancakes!
描述
输入描述
The first line has two integers .
输出描述
Output the answer.
示例1
输入:
3 2
输出:
3
pypy3(pypy3.6.1) 解法, 执行用时: 34ms, 内存消耗: 18800K, 提交时间: 2020-12-27 16:22:55
n,k=input().split() n=int(n) n*=2 k=int(k) print(max((n//k+(n%k!=0)),2))
Python3(3.9) 解法, 执行用时: 35ms, 内存消耗: 2816K, 提交时间: 2021-05-13 20:12:21
a,b=map(int,input().split()) print(max((2*a+b-1)//b,2))