結果

問題 No.267 トランプソート
ユーザー htensaihtensai
提出日時 2019-11-23 15:27:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 1,462 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 78,212 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-10-11 06:58:37
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,104 KB
testcase_01 AC 116 ms
53,060 KB
testcase_02 AC 123 ms
53,804 KB
testcase_03 AC 131 ms
54,260 KB
testcase_04 AC 132 ms
54,008 KB
testcase_05 AC 131 ms
53,936 KB
testcase_06 AC 134 ms
53,964 KB
testcase_07 AC 129 ms
53,724 KB
testcase_08 AC 132 ms
53,960 KB
testcase_09 AC 131 ms
53,828 KB
testcase_10 AC 136 ms
53,764 KB
testcase_11 AC 120 ms
53,144 KB
testcase_12 AC 121 ms
53,040 KB
testcase_13 AC 136 ms
54,072 KB
testcase_14 AC 134 ms
54,156 KB
testcase_15 AC 133 ms
54,032 KB
testcase_16 AC 131 ms
54,064 KB
testcase_17 AC 122 ms
53,152 KB
testcase_18 AC 133 ms
54,052 KB
testcase_19 AC 134 ms
53,768 KB
testcase_20 AC 133 ms
54,040 KB
testcase_21 AC 136 ms
53,908 KB
testcase_22 AC 125 ms
52,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		Card[] arr = new Card[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = new Card(sc.next());
		}
		Arrays.sort(arr);
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    if (i != 0) {
		        sb.append(" ");
		    }
		    sb.append(arr[i]);
		}
		System.out.println(sb);
	}
	
	static class Card implements Comparable<Card> {
	    String card;
	    char mark;
	    char number;
	    int value;
	    public Card(String card) {
	        this.card = card;
	        mark = card.charAt(0);
	        number = card.charAt(1);
	        if (number >= '2' && number <= '9') {
	            value = number - '0';
	        } else if (number == 'A') {
	            value = 1;
	        } else if (number == 'T') {
	            value = 10;
	        } else if (number == 'J') {
	            value = 11;
	        } else if (number == 'Q') {
	            value = 12;
	        } else if (number == 'K') {
	            value = 13;
	        }
	        if (mark == 'C') {
	            value += 100;
	        } else if (mark == 'H') {
	            value += 200;
	        } else if (mark == 'S') {
	            value += 300;
	        }
	    }
	    
	    public int compareTo(Card another) {
	        return value - another.value;
	    }
	    
	    public String toString() {
	        return card;
	    }
	}
}
0