题解列表

筛选

自定义函数之数字后移

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {static Scanner sc=new Scanner(System.in);……

题解 2810: 鸡尾酒疗法

摘要:参考代码:a=int(input())b=[]for i in range(1,a+1):    x,y=map(int,input().split())    if i<=1:        c=y……

约瑟夫的环

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class wc {static Scanner sc=new Scanner(System.in);pu……

2848题: 基因相关性

摘要:参考代码:                Scanner sc=new Scanner(System.in); double n = sc.nextDouble(); String x =……