ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [BOJ] 10814 : 나이순 정렬 (Java)
    STUDYING/Algorithm 2018. 11. 13. 12:20
    728x90

    문제


    [BOJ] 10814 : 나이순 정렬



    코드


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52

    import java.util.*;
     
    class Member implements Comparable{
        int age;
        String name;
        
        public Member(int age, String name) {
            this.age = age;
            this.name = name;
        }
     
        
        public String toString() {
            return age+""+name;
        }
     
     
        @Override
        public int compareTo(Object o) {
            return this.age-((Member)o).age;
        }
     
    }
     
     
     
    public class Main {
     
        public static void main(String[] args) {
            ArrayList<Member> members = new ArrayList<Member> (); 
            Scanner sc = new Scanner(System.in);
            
            int num = sc.nextInt();
            int age;
            String name;
            
            for(int i=0; i<num; i++) {
                age = sc.nextInt();
                name = sc.nextLine();
                
                members.add(new Member(age, name));
            }
            Collections.sort(members);
            Iterator it = members.iterator();
            while(it.hasNext()) {
                System.out.println(it.next());
            }
        }
     
    }
     



    'STUDYING > Algorithm' 카테고리의 다른 글

    [BOJ] 2239 : 일곱 난쟁이  (0) 2018.11.13
    [BOJ] 1912 : 연속합  (0) 2018.11.13
    [BOJ] 1748 : 수 이어 쓰기 1  (0) 2018.11.12
    [BOJ] 2003 : 수들의 합 2  (0) 2018.11.12
    [BOJ] 1924 : 2007년 (Java)  (0) 2018.11.07
Designed by Tistory.