結果

問題 No.267 トランプソート
ユーザー GrenacheGrenache
提出日時 2015-08-21 22:30:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 1,270 bytes
コンパイル時間 3,132 ms
コンパイル使用メモリ 78,136 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-07-18 11:37:29
合計ジャッジ時間 6,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,804 KB
testcase_01 AC 117 ms
53,928 KB
testcase_02 AC 113 ms
53,068 KB
testcase_03 AC 102 ms
52,608 KB
testcase_04 AC 105 ms
52,828 KB
testcase_05 AC 119 ms
53,668 KB
testcase_06 AC 119 ms
53,696 KB
testcase_07 AC 104 ms
53,392 KB
testcase_08 AC 110 ms
52,920 KB
testcase_09 AC 121 ms
53,224 KB
testcase_10 AC 123 ms
53,404 KB
testcase_11 AC 120 ms
52,976 KB
testcase_12 AC 116 ms
53,400 KB
testcase_13 AC 106 ms
52,668 KB
testcase_14 AC 122 ms
54,292 KB
testcase_15 AC 107 ms
52,600 KB
testcase_16 AC 125 ms
53,616 KB
testcase_17 AC 111 ms
54,132 KB
testcase_18 AC 123 ms
53,728 KB
testcase_19 AC 123 ms
54,132 KB
testcase_20 AC 105 ms
52,444 KB
testcase_21 AC 119 ms
53,852 KB
testcase_22 AC 124 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder267 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        boolean[][] cards = new boolean[4][13];
        char[] mmm = {'D', 'C', 'H', 'S'};
        char[] nnn = {'A', '2', '3', '4', '5', '6', '7', '8', '9', 'T', 'J', 'Q', 'K'};
        for (int i = 0; i < n; i++) {
        	char[] mn = sc.next().toCharArray();
        	int mm, nn;
        	if (mn[0] == 'D') {
        		mm = 0;
        	} else if (mn[0] == 'C') {
        		mm = 1;
        	} else if (mn[0] == 'H') {
        		mm = 2;
        	} else {
        		mm = 3;
        	}

        	if (mn[1] == 'A') {
        		nn = 0;
        	} else if (mn[1] == 'T') {
        		nn = 9;
        	} else if (mn[1] == 'J') {
        		nn = 10;
        	} else if (mn[1] == 'Q') {
        		nn = 11;
        	} else if (mn[1] == 'K') {
        		nn = 12;
        	} else {
        		nn = mn[1] - '1';
        	}
        	
        	cards[mm][nn] = true;
        }

        for (int i = 0; i < 4; i++) {
        	for (int j = 0; j < 13; j++) {
        		if (cards[i][j]) {
        			System.out.printf("%c%c ", mmm[i], nnn[j]);
        		}
        	}
        }

        sc.close();
    }
}
0