LLincode
LLincode
全部文章
分类
归档
标签
去牛客网
登录
/
注册
LLincode的博客
全部文章
(共1篇)
题解 | 小红的正整数构造
import sys l, r, x = map(int, input().split()) def solve(a, b, c): for i in range(a, b + 1): if i % c == 0: return i retu...
2025-06-29
1
41