| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 121912 | 胡皓宇 | 13能被13整数的数 | Python3 | Wrong Answer | 36 MS | 3760 KB | 110 | 2025-06-11 21:09:31 |
a = 0 m = int(input()) n = int(input()) for i in range(m,n+1): if i % 13 == 0: a+=i print(a)
------Input------
48 562
------Answer-----
12220
------Your output-----