結果

問題 No.267 トランプソート
ユーザー tentententen
提出日時 2020-10-14 11:38:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 1,627 bytes
コンパイル時間 2,524 ms
コンパイル使用メモリ 77,644 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-07-20 19:03:03
合計ジャッジ時間 6,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,240 KB
testcase_01 AC 136 ms
41,444 KB
testcase_02 AC 138 ms
41,132 KB
testcase_03 AC 134 ms
41,296 KB
testcase_04 AC 120 ms
40,120 KB
testcase_05 AC 138 ms
41,564 KB
testcase_06 AC 138 ms
41,276 KB
testcase_07 AC 139 ms
41,192 KB
testcase_08 AC 143 ms
41,128 KB
testcase_09 AC 142 ms
41,408 KB
testcase_10 AC 144 ms
41,520 KB
testcase_11 AC 143 ms
41,112 KB
testcase_12 AC 142 ms
41,344 KB
testcase_13 AC 145 ms
41,484 KB
testcase_14 AC 140 ms
41,552 KB
testcase_15 AC 144 ms
41,284 KB
testcase_16 AC 146 ms
41,192 KB
testcase_17 AC 138 ms
41,304 KB
testcase_18 AC 142 ms
41,572 KB
testcase_19 AC 141 ms
41,336 KB
testcase_20 AC 128 ms
40,232 KB
testcase_21 AC 144 ms
41,624 KB
testcase_22 AC 141 ms
41,244 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[] cards = new Card[n];
    	for (int i = 0; i < n; i++) {
    	    cards[i] = new Card(sc.next());
    	}
    	Arrays.sort(cards);
    	StringBuilder sb = new StringBuilder();
    	for (int i = 0; i < n; i++) {
    	    if (i > 0) {
    	        sb.append(" ");
    	    }
    	    sb.append(cards[i]);
    	}
    	System.out.println(sb);
	}
	
	static class Card implements Comparable<Card> {
	    String name;
	    char suite;
	    int mark;
	    int value;
	    static char[] marks = new char[]{'D', 'C', 'H', 'S'};
	    
	    
	    public Card(String name) {
	        this.name = name;
	        suite = name.charAt(0);
	        for (int i = 0; i < marks.length; i++) {
	            if (marks[i] == suite) {
	                mark = i;
	                break;
	            }
	        }
	        char tmp = name.charAt(1);
	        if (tmp == 'A') {
	            value = 1;
	        } else if (tmp == 'J') {
	            value = 11;
	        } else if (tmp == 'T') {
	            value = 10;
	        } else if (tmp == 'Q') {
	            value = 12;
	        } else if (tmp == 'K') {
	            value = 13;
	        } else {
	            value = tmp - '0';
	        }
	    }
	    
	    public int compareTo(Card another) {
	        if (mark == another.mark) {
	            return value - another.value;
	        } else {
	            return mark - another.mark;
	        }
	    }
	    
	    public String toString() {
	        
	        return name;
	    }
	}
}
0