結果

問題 No.267 トランプソート
ユーザー uafr_csuafr_cs
提出日時 2015-08-21 22:28:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 1,459 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 86,132 KB
実行使用メモリ 55,028 KB
最終ジャッジ日時 2024-07-18 11:31:39
合計ジャッジ時間 6,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static class Card implements Comparable<Card> {
		char soot_ch, num_ch;
		int soot, num;

		public Card(char[] card) {
			this.soot_ch = card[0];
			this.num_ch = card[1];
			
			switch(this.soot_ch){
			case 'D': soot = 0; break;
			case 'C': soot = 1; break;
			case 'H': soot = 2; break;
			case 'S': soot = 3; break;
			}
			
			switch(this.num_ch){
			case 'A': num = 1; break;
			case 'T': num = 10; break;
			case 'J': num = 11; break;
			case 'Q': num = 12; break;
			case 'K': num = 13; break;
			default: num = Character.getNumericValue(num_ch);
			}
		}

		@Override
		public int compareTo(Card o) {
			if(Integer.compare(this.soot, o.soot) != 0){
				return Integer.compare(this.soot, o.soot);
			}else{
				return Integer.compare(this.num, o.num);
			}
		}
		
		@Override
		public String toString(){
			return this.soot_ch + "" + this.num_ch;
		}
		
		
	}
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		Card[] cards = new Card[N];
		for(int i = 0; i < N; i++){
			cards[i] = new Card(sc.next().toCharArray());
		}
		
		Arrays.sort(cards);
		for(int i = 0; i < N; i++){
			System.out.print((i != 0 ? " " : "") + cards[i]);
		}
		System.out.println();
		
	}
	
}
0