結果

問題 No.267 トランプソート
ユーザー tsunabittsunabit
提出日時 2020-03-19 17:51:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 1,000 ms
コード長 1,271 bytes
コンパイル時間 4,042 ms
コンパイル使用メモリ 80,192 KB
実行使用メモリ 42,856 KB
最終ジャッジ日時 2024-05-08 03:21:58
合計ジャッジ時間 7,853 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
42,376 KB
testcase_01 AC 121 ms
41,292 KB
testcase_02 AC 155 ms
42,424 KB
testcase_03 AC 141 ms
42,472 KB
testcase_04 AC 126 ms
42,116 KB
testcase_05 AC 120 ms
41,292 KB
testcase_06 AC 144 ms
42,288 KB
testcase_07 AC 114 ms
41,360 KB
testcase_08 AC 163 ms
42,588 KB
testcase_09 AC 159 ms
42,628 KB
testcase_10 AC 163 ms
42,148 KB
testcase_11 AC 153 ms
42,656 KB
testcase_12 AC 149 ms
42,632 KB
testcase_13 AC 149 ms
42,652 KB
testcase_14 AC 158 ms
42,708 KB
testcase_15 AC 151 ms
42,668 KB
testcase_16 AC 138 ms
42,856 KB
testcase_17 AC 141 ms
42,284 KB
testcase_18 AC 169 ms
42,652 KB
testcase_19 AC 143 ms
42,688 KB
testcase_20 AC 142 ms
42,748 KB
testcase_21 AC 157 ms
42,836 KB
testcase_22 AC 165 ms
42,608 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