Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92626 谭景年 11种树 Python3 Wrong Answer 32 MS 3748 KB 103 2024-10-05 20:08:56

Tests(0/11):


Code:

s=input().split() a=int(s[0]) b=int(s[1]) if a%b>1: print(a//b+1) else: print(a//b)


Run Info:

------Input------
1034 99
------Answer-----
12
------Your output-----
11