Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91798 徐梓涵 06小数除法 Python3 Accepted 49 MS 3792 KB 93 2024-09-22 15:09:02

Tests(10/10):


Code:

s=input().split() a=s[0] c=s[1] a=float(a) c=float(c) a='{:.2f}'.format(a%c) print(a)