Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91632 周轩屹 11种树 Python3 Wrong Answer 33 MS 3760 KB 122 2024-09-22 11:19:44

Tests(0/11):


Code:

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


Run Info:

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