import java.util.ArrayList; import java.util.Scanner; public class Main{ public static void main(String[] args) { ArrayList<Integer> list=new ArrayList<Integer>(); Scanner sc=new Scanner(System.in); int longth=sc.nextInt(); int n=sc.nextInt(); for (int i = 0; i<=longth; i++) { list.add(i); } for (int i = 0; i < n; i++) { int a=sc.nextInt(); int b=sc.nextInt(); for (int j =a; j <=b ; j++) { for (int k = 0; k < list.size(); k++) { if(list.get(k)==j){ list.remove(k); break; } } } } System.out.println(list.size()); sc.close(); } }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:654 |
C二级辅导-同因查找 (C语言代码)浏览:625 |
简单的a+b (C语言代码)浏览:661 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:701 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)from DQM浏览:773 |
简单的a+b (C语言代码)浏览:618 |
C二级辅导-等差数列 (C语言代码)浏览:806 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:692 |
小O的图案 (C语言代码)浏览:979 |
1392题解(大数相加)浏览:640 |