Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98066 | 张泽一 | 13投资金额II | Python3 | Wrong Answer | 40 MS | 3752 KB | 187 | 2024-11-17 11:50:36 |
s=input().split() Y=int(s[0]) M=int(s[1]) for ss in range(Y,Y+11): if ss%4==0 or ss%400: M=M*1.3 M=int(M) else: M=M*1.2 M=int(M) print(M)
------Input------
55 12
------Answer-----
102
------Your output-----
189