SoulRoar
SoulRoar
全部文章
分类
归档
标签
去牛客网
登录
/
注册
SoulRoar的博客
全部文章
(共2篇)
题解 | 字母交换(DeepSeek附带思考过程,用时853秒)
s, m = input().split() m = int(m) from collections import defaultdict positions = defaultdict(list) for idx, c in enumerate(s): positions[c].app...
2025-02-18
0
117
题解 | 手串
import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new S...
2025-02-14
0
38