参考代码:
import java.io.*; import java.util.*; public class Main { static BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); static PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out)); public static void main(String[] args) throws IOException { int n = Integer.parseInt(in.readLine()); // 读取输入的整数n,表示偏移量数组的长度 int[] offset = new int[n]; // 创建一个长度为n的偏移量数组 String s; String[] ss; while ((s = in.readLine()) != null) { ss = s.split("\\s"); // 将输入按空格分割成字符串数组 if (ss[0].equals("add")) { // 如果第一个字符串是"add" offset[0]++; // 偏移量数组的第一个元素加1 } else if (ss[0].equals("sync")) { // 如果第一个字符串是"sync" if (offset[Integer.parseInt(ss[1])] < offset[0]) { // 如果指定的偏移量小于第一个偏移量 offset[Integer.parseInt(ss[1])]++; // 将指定的偏移量加1 } } else { int min = Integer.MAX_VALUE; for (int i = 0; i < n; i++) { min = Math.min(min, offset[i]); } out.println(min); // 输出最小值 } out.flush(); } } }
0.0分
1 人评分
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:593 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:750 |
简单的a+b (C语言代码)浏览:574 |
大神老白 (C语言代码)浏览:637 |
Pascal三角 (C语言代码)浏览:707 |
C语言程序设计教程(第三版)课后习题12.1 (C语言代码)浏览:689 |
C二级辅导-公约公倍 (C语言代码)浏览:693 |
求圆的面积 (C++代码)浮点数有误差!!!浏览:724 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:558 |