結果

問題 No.267 トランプソート
ユーザー jp_stejp_ste
提出日時 2016-05-11 16:01:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 1,725 bytes
コンパイル時間 3,460 ms
コンパイル使用メモリ 82,996 KB
実行使用メモリ 55,256 KB
最終ジャッジ日時 2024-10-05 13:42:31
合計ジャッジ時間 7,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
55,252 KB
testcase_01 AC 146 ms
55,020 KB
testcase_02 AC 135 ms
54,504 KB
testcase_03 AC 136 ms
54,508 KB
testcase_04 AC 148 ms
55,064 KB
testcase_05 AC 144 ms
54,932 KB
testcase_06 AC 144 ms
54,988 KB
testcase_07 AC 150 ms
54,712 KB
testcase_08 AC 142 ms
54,768 KB
testcase_09 AC 156 ms
54,492 KB
testcase_10 AC 155 ms
54,992 KB
testcase_11 AC 154 ms
54,976 KB
testcase_12 AC 151 ms
55,256 KB
testcase_13 AC 143 ms
54,492 KB
testcase_14 AC 155 ms
54,772 KB
testcase_15 AC 167 ms
54,968 KB
testcase_16 AC 155 ms
54,872 KB
testcase_17 AC 149 ms
55,104 KB
testcase_18 AC 163 ms
54,828 KB
testcase_19 AC 153 ms
55,008 KB
testcase_20 AC 147 ms
54,588 KB
testcase_21 AC 167 ms
55,000 KB
testcase_22 AC 140 ms
54,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main2 {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int n = Integer.parseInt(scan.next());
            ArrayList<String> list = new ArrayList<>();
            
            for(int i=0; i<n; i++) {
                char ch[] = scan.next().toCharArray();
                     if(ch[0] == 'D') ch[0] = '0';
                else if(ch[0] == 'C') ch[0] = '1';
                else if(ch[0] == 'H') ch[0] = '2';
                else if(ch[0] == 'S') ch[0] = '3';
                     
                     if(ch[1] == 'A') ch[1] = '1';
                else if(ch[1] == 'T') ch[1] = 'A';
                else if(ch[1] == 'J') ch[1] = 'B';
                else if(ch[1] == 'Q') ch[1] = 'C';
                else if(ch[1] == 'K') ch[1] = 'D';
                list.add("" + ch[0] + ch[1]);
            }
            
            Collections.sort(list);
            
            for(int i=0; i<list.size(); i++) {
                if(i > 0) System.out.print(" ");
                
                char f = list.get(i).charAt(0);
                     if(f == '0') f = 'D';
                else if(f == '1') f = 'C';
                else if(f == '2') f = 'H';
                else if(f == '3') f = 'S';
                
                char l = list.get(i).charAt(1);
                    if(l == '1') l = 'A';
               else if(l == 'A') l = 'T';
               else if(l == 'B') l = 'J';
               else if(l == 'C') l = 'Q';
               else if(l == 'D') l = 'K';
                    
               System.out.print("" + f + l);
            }
        }
    }
}
0