結果

問題 No.267 トランプソート
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 03:37:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 1,000 ms
コード長 1,634 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 79,400 KB
実行使用メモリ 42,940 KB
最終ジャッジ日時 2024-05-06 10:13:08
合計ジャッジ時間 6,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
42,224 KB
testcase_01 AC 142 ms
42,344 KB
testcase_02 AC 134 ms
42,448 KB
testcase_03 AC 147 ms
42,604 KB
testcase_04 AC 144 ms
42,612 KB
testcase_05 AC 137 ms
42,584 KB
testcase_06 AC 139 ms
42,716 KB
testcase_07 AC 140 ms
42,812 KB
testcase_08 AC 144 ms
42,796 KB
testcase_09 AC 156 ms
42,676 KB
testcase_10 AC 129 ms
42,388 KB
testcase_11 AC 142 ms
42,716 KB
testcase_12 AC 145 ms
42,940 KB
testcase_13 AC 171 ms
42,748 KB
testcase_14 AC 141 ms
42,480 KB
testcase_15 AC 142 ms
42,636 KB
testcase_16 AC 133 ms
42,348 KB
testcase_17 AC 149 ms
42,700 KB
testcase_18 AC 146 ms
42,368 KB
testcase_19 AC 153 ms
42,588 KB
testcase_20 AC 128 ms
42,224 KB
testcase_21 AC 152 ms
42,732 KB
testcase_22 AC 144 ms
42,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] mn = new int [N];
        for(int i=0; i<N; i++){
            String tmp=sc.next();
            int t1=tmp.charAt(0);
            if(t1=='C'){
                mn[i]+=100;
            }else if(t1=='H'){
                mn[i]+=200;
            }else if(t1=='S'){
                mn[i]+=300;
            }
            int t2=tmp.charAt(1);
            if('2'<=t2&&t2<='9'){
                mn[i]+=(t2-'0');
            }else if(t2=='T'){
                mn[i]+=10;
            }else if(t2=='J'){
                mn[i]+=11;
            }else if(t2=='Q'){
                mn[i]+=12;
            }else if(t2=='K'){
                mn[i]+=13;
            }
        }
        Arrays.sort(mn);
        for(int i=0; i<N; i++){
            String m="";
            String n="";
            int t1=mn[i]/100;
            if(t1==0){
                m="D";
            }else if(t1==1){
                m="C";
            }else if(t1==2){
                m="H";
            }else if(t1==3){
                m="S";
            }
            int t2=mn[i]%100;
            if(t2==0){
                n="A";
            }else if(t2==10){
                n="T";
            }else if(t2==11){
                n="J";
            }else if(t2==12){
                n="Q";
            }else if(t2==13){
                n="K";
            }else{
                n=String.valueOf(t2);
            }
            System.out.print(m+n+" ");
        }
        System.out.println();
    }
}
0