Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92627 谭景年 11种树 Python3 Wrong Answer 33 MS 3740 KB 104 2024-10-05 20:10:25

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