結果

問題 No.267 トランプソート
ユーザー kou6839kou6839
提出日時 2015-08-22 19:00:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 1,000 ms
コード長 894 bytes
コンパイル時間 2,433 ms
コンパイル使用メモリ 83,924 KB
実行使用メモリ 43,428 KB
最終ジャッジ日時 2024-07-18 12:48:47
合計ジャッジ時間 6,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,904 KB
testcase_01 AC 169 ms
43,428 KB
testcase_02 AC 159 ms
43,164 KB
testcase_03 AC 159 ms
43,288 KB
testcase_04 AC 146 ms
43,172 KB
testcase_05 AC 145 ms
43,024 KB
testcase_06 AC 135 ms
42,848 KB
testcase_07 AC 136 ms
43,164 KB
testcase_08 AC 160 ms
43,012 KB
testcase_09 AC 155 ms
43,308 KB
testcase_10 AC 160 ms
43,292 KB
testcase_11 AC 167 ms
43,332 KB
testcase_12 AC 146 ms
43,316 KB
testcase_13 AC 162 ms
43,344 KB
testcase_14 AC 149 ms
43,072 KB
testcase_15 AC 150 ms
42,816 KB
testcase_16 AC 147 ms
43,280 KB
testcase_17 AC 147 ms
43,308 KB
testcase_18 AC 159 ms
43,292 KB
testcase_19 AC 148 ms
43,212 KB
testcase_20 AC 140 ms
43,280 KB
testcase_21 AC 151 ms
43,072 KB
testcase_22 AC 150 ms
42,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main {
	static char[] mark ={'D','C','H','S'};
	static char[] number ={'A','2','3','4','5','6','7','8','9','T','J','Q','K'};
	static int to_int(String string){ 
		int tmp=0;
		for(int i=0;i<4;i++){
			if(string.charAt(0)==mark[i]) tmp+=i*13;
		}
		for(int i=0;i<13;i++){
			if(string.charAt(1)==number[i])tmp+=i+1;
		}
		return tmp;
	}
	static String to_string(int a){
		String ret = "";
		ret+=mark[(a-1)/13];
		ret+=number[a-((a-1)/13)*13-1];
		return ret;
	}
    public static void main(String[] args){
        // TODO 自動生成されたメソッド・スタブ
    	Scanner sc = new Scanner(System.in);
    	int N = sc.nextInt();
    	int[] in = new int[N];
    	for(int i=0;i<N;i++) in[i]=to_int(sc.next());
    	Arrays.sort(in);
    	String ans = "";
    	for(int i=0;i<N;i++) ans+=to_string(in[i])+" ";
    	System.out.println(ans.trim());
    }
}
0