結果

問題 No.267 トランプソート
ユーザー tsunabittsunabit
提出日時 2020-03-19 17:51:07
言語 Java
(openjdk 23)
結果
AC  
実行時間 188 ms / 1,000 ms
コード長 1,271 bytes
コンパイル時間 4,376 ms
コンパイル使用メモリ 80,684 KB
実行使用メモリ 55,272 KB
最終ジャッジ日時 2024-12-14 03:22:33
合計ジャッジ時間 8,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
55,156 KB
testcase_01 AC 135 ms
54,096 KB
testcase_02 AC 178 ms
55,100 KB
testcase_03 AC 159 ms
54,744 KB
testcase_04 AC 160 ms
55,072 KB
testcase_05 AC 137 ms
54,088 KB
testcase_06 AC 170 ms
55,172 KB
testcase_07 AC 142 ms
54,188 KB
testcase_08 AC 188 ms
55,208 KB
testcase_09 AC 179 ms
55,128 KB
testcase_10 AC 187 ms
55,272 KB
testcase_11 AC 187 ms
54,900 KB
testcase_12 AC 180 ms
55,136 KB
testcase_13 AC 181 ms
55,072 KB
testcase_14 AC 171 ms
55,232 KB
testcase_15 AC 179 ms
55,244 KB
testcase_16 AC 176 ms
54,864 KB
testcase_17 AC 179 ms
54,972 KB
testcase_18 AC 180 ms
55,080 KB
testcase_19 AC 176 ms
54,932 KB
testcase_20 AC 182 ms
54,848 KB
testcase_21 AC 188 ms
55,088 KB
testcase_22 AC 173 ms
55,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No247 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[] d = new char[14];
		char[] c = new char[14];
		char[] h = new char[14];
		char[] s = new char[14];
		
		for(int i = 0; i < n; i++) {
			String t = sc.next();
			int y;
			if(t.charAt(1) == 'A') y=1;
			else if(t.charAt(1) == 'T') y=10;
			else if(t.charAt(1) == 'J') y=11;
			else if(t.charAt(1) == 'Q') y=12;
			else if(t.charAt(1) == 'K') y=13;
			else y=Integer.parseInt(t.substring(1));
			
			if(t.charAt(0) == 'D') d[y] = 't';
			else if(t.charAt(0) == 'C') c[y] = 't';
			else if(t.charAt(0) == 'H') h[y] = 't';
			else if(t.charAt(0) == 'S') s[y] = 't';
		}
		re("D", d);
		re("C", c);
		re("H", h);
		re("S", s);
		System.out.println("");
	}
	public static void re(String k, char[] a) {
		for(int i = 0; i < a.length; i++) {
			if(a[i] == 't') {
				if(i == 1) System.out.print(k + "A" + " ");
				else if(i == 10) System.out.print(k + "T" + " ");
				else if(i == 11) System.out.print(k + "J" + " ");
				else if(i == 12) System.out.print(k + "Q" + " ");
				else if(i == 13) System.out.print(k + "K" + " ");
				else System.out.print(k + i + " ");
				
			}
		}
	}
}
0