摘要: import java.util.*; public class Main{ private static int N=100010; private static int[] res=new int[N]; private static int[] temp=new int[N]; public 阅读全文
posted @ 2022-01-10 15:20 苏子你得风驰电掣 阅读(62) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Main{ private static int N=1010; private static int[][] res=new int[N][N]; private static int[][] temp=new int[N][N]; 阅读全文
posted @ 2022-01-10 14:16 苏子你得风驰电掣 阅读(28) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Main{ private static int N=100010; private static int[] res=new int[N]; public static void main(String[] args){ Scann 阅读全文
posted @ 2022-01-10 14:15 苏子你得风驰电掣 阅读(280) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Main{ private static int N=100010; private static int[] res=new int[N]; private static int[] temp=new int[N]; public 阅读全文
posted @ 2022-01-10 14:15 苏子你得风驰电掣 阅读(47) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Main{ private static int N=100010; private static int[] res=new int[N]; public static void main(String[] args){ Scann 阅读全文
posted @ 2022-01-10 14:14 苏子你得风驰电掣 阅读(84) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Main{ private static int N=100010; private static int[] res=new int[N]; private static int[] temp=new int[N]; public 阅读全文
posted @ 2022-01-10 14:13 苏子你得风驰电掣 阅读(20) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Main{ public static void main(String[] args){ Scanner in=new Scanner(System.in); int n=in.nextInt(); int q=in.nextInt 阅读全文
posted @ 2022-01-10 14:13 苏子你得风驰电掣 阅读(16) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Main{ public static void main(String[] args){ Scanner in=new Scanner(System.in); int n=in.nextInt(); int[] res=new in 阅读全文
posted @ 2022-01-10 14:12 苏子你得风驰电掣 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1 package Queue; 2 3 public class Queue { 4 private int maxSize; 5 private int front; 6 private int rear; 7 private int[] arr; 8 9 public Queue(int ma 阅读全文
posted @ 2021-11-23 22:47 苏子你得风驰电掣 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 资源限制 时间限制:1.0s 内存限制:256.0MB 问题描述 输入A、B,输出A+B。 输入格式 输入的第一行包括两个整数,由空格分隔,分别表示A、B。 输出格式 输出一行,包括一个整数,表示A+B的值。 样例输入 12 45 样例输出 57 数据规模与约定 -10000 <= A, B <= 阅读全文
posted @ 2021-11-09 23:26 苏子你得风驰电掣 阅读(71) 评论(0) 推荐(0) 编辑