Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92309 余泽越 11整数的除法 Python3 Wrong Answer 42 MS 3760 KB 107 2024-09-28 20:25:04

Tests(3/10):


Code:

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


Run Info:

------Input------
99 33
------Answer-----
3 0
------Your output-----
3