LLincode
LLincode
全部文章
分类
归档
标签
去牛客网
登录
/
注册
LLincode的博客
全部文章
(共2篇)
题解 | 神秘石像的镜像序列
a = list(map(int, input().split())) print(" ".join(map(str, a[-2::-1])))
2026-02-02
1
16
题解 | 小红的正整数构造
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
54