标签:
1 package com.ezreal; 2 3 import java.util.Scanner; 4 5 public class Main { 6 7 /** 8 * @param args 9 */ 10 public static void main(String[] args) { 11 // TODO Auto-generated method stub 12 new Main().run(); 13 } 14 public void run(){ 15 Scanner sc=new Scanner(System.in); 16 int N=sc.nextInt(); 17 int[] a=new int[1000]; 18 int result=0; 19 for(int i=0;i<N;i++){ 20 a[i]=sc.nextInt(); 21 } 22 for(int i=0;i<N;i++){ 23 for(int j=i+1;j<N;j++){ 24 if(Math.abs(a[i]-a[j])==1){ 25 result+=1; 26 } 27 } 28 } 29 System.out.println(result); 30 } 31 32 }
标签:
原文地址:http://www.cnblogs.com/ezreal2016/p/5781905.html