摘要: import java.util.HashSet; import java.util.Scanner; import java.util.Set; public class App { public static void main(String[] args) throws Exception { 阅读全文
posted @ 2026-01-22 15:03 kayaker 阅读(6) 评论(0) 推荐(0)
摘要: public class App { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.nextLine 阅读全文
posted @ 2026-01-19 17:00 kayaker 阅读(6) 评论(0) 推荐(0)
摘要: import java.util.Scanner; public class App { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = In 阅读全文
posted @ 2025-07-09 15:44 kayaker 阅读(12) 评论(0) 推荐(0)
摘要: public class App { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.nextLine 阅读全文
posted @ 2025-04-09 10:37 kayaker 阅读(14) 评论(0) 推荐(0)
摘要: public class App { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.nextLine 阅读全文
posted @ 2025-04-03 09:44 kayaker 阅读(39) 评论(0) 推荐(0)
摘要: 环境:redhat linux x86_64, ollama v0.1.44, bge-large-zh-v1.5.gguf 问题步骤: bge嵌入模型通过modelscope下载后,执行ollama create bge-large-zh-v1.5 --f Modelfile,导入嵌入模型 执行 阅读全文
posted @ 2025-03-31 09:42 kayaker 阅读(1162) 评论(0) 推荐(0)
摘要: import java.util.Queue; import java.util.Scanner; public class App { public static void main(String[] args) throws Exception { Scanner sc = new Scanne 阅读全文
posted @ 2025-03-26 15:29 kayaker 阅读(23) 评论(0) 推荐(0)
摘要: public class App { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int cases = Integer.parseInt(sc.next 阅读全文
posted @ 2025-03-26 15:25 kayaker 阅读(15) 评论(0) 推荐(0)
摘要: 根据题意,简单列了一下演绎的情况,有三个人A B S, S为spectator,一下每行为每场比赛的参赛安排,可以看到每三场比赛,S会重新成为spectator A 2 S A S 2 2 S A 2 A S S A 2 S 2 A A 2 S 。。。 public class App { publ 阅读全文
posted @ 2025-03-24 11:00 kayaker 阅读(16) 评论(0) 推荐(0)
摘要: import java.util.Arrays; import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class App { public static void main(String[] 阅读全文
posted @ 2025-03-19 14:12 kayaker 阅读(17) 评论(0) 推荐(0)