标签:
1 package com.ezreal; 2 3 import java.util.*; 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 in = new Scanner(System.in); 16 int n=in.nextInt(); 17 int []a = new int[1001]; 18 int []b = new int[n]; 19 for(int i =0;i<n;i++){ 20 b[i]=in.nextInt(); 21 } 22 for(int i =0;i<n;i++){ 23 System.out.print((++a[b[i]]) +" "); 24 } 25 } 26 27 }
标签:
原文地址:http://www.cnblogs.com/ezreal2016/p/5781899.html