結果
問題 | No.267 トランプソート |
ユーザー | YamaKasa |
提出日時 | 2018-09-08 12:15:51 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 125 ms / 1,000 ms |
コード長 | 2,802 bytes |
コンパイル時間 | 2,010 ms |
コンパイル使用メモリ | 83,540 KB |
実行使用メモリ | 54,428 KB |
最終ジャッジ日時 | 2024-12-15 16:44:12 |
合計ジャッジ時間 | 5,723 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 114 ms
54,112 KB |
testcase_01 | AC | 111 ms
53,476 KB |
testcase_02 | AC | 116 ms
54,148 KB |
testcase_03 | AC | 101 ms
52,840 KB |
testcase_04 | AC | 113 ms
54,128 KB |
testcase_05 | AC | 110 ms
53,676 KB |
testcase_06 | AC | 115 ms
54,008 KB |
testcase_07 | AC | 112 ms
54,064 KB |
testcase_08 | AC | 125 ms
54,264 KB |
testcase_09 | AC | 111 ms
53,380 KB |
testcase_10 | AC | 120 ms
54,204 KB |
testcase_11 | AC | 111 ms
52,932 KB |
testcase_12 | AC | 107 ms
52,728 KB |
testcase_13 | AC | 114 ms
52,984 KB |
testcase_14 | AC | 120 ms
54,000 KB |
testcase_15 | AC | 120 ms
53,128 KB |
testcase_16 | AC | 108 ms
52,896 KB |
testcase_17 | AC | 111 ms
52,964 KB |
testcase_18 | AC | 120 ms
53,856 KB |
testcase_19 | AC | 119 ms
53,200 KB |
testcase_20 | AC | 122 ms
54,428 KB |
testcase_21 | AC | 123 ms
54,116 KB |
testcase_22 | AC | 117 ms
54,044 KB |
ソースコード
import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); List<Integer> listD = new ArrayList<Integer>(); List<Integer> listC = new ArrayList<Integer>(); List<Integer> listH = new ArrayList<Integer>(); List<Integer> listS = new ArrayList<Integer>(); for(int i = 0; i < N; i++) { String s = scan.next(); String m = s.substring(0, 1); String n = s.substring(1, 2); int t; if(n.equals("A")) { t = 1; }else if(n.equals("T")) { t = 10; }else if(n.equals("J")) { t = 11; }else if(n.equals("Q")) { t = 12; }else if(n.equals("K")) { t = 13; }else { t = Integer.parseInt(n); } if(m.equals("D")) { listD.add(t); }else if(m.equals("C")) { listC.add(t); }else if(m.equals("H")) { listH.add(t); }else { listS.add(t); } } scan.close(); int l = listD.size() + listC.size() + listH.size() + listS.size(); String[] ans = new String[l]; Collections.sort(listD); Collections.sort(listC); Collections.sort(listH); Collections.sort(listS); int index = 0; for(int i = 0; i < listD.size(); i++) { int k = listD.get(i); if(k == 1) { ans[index] = "DA"; }else if(k == 10){ ans[index] = "DT"; }else if(k == 11) { ans[index] = "DJ"; }else if(k == 12) { ans[index] = "DQ"; }else if(k == 13){ ans[index] = "DK"; }else { ans[index] = "D" + Integer.toString(k); } index ++; } for(int i = 0; i < listC.size(); i++) { int k = listC.get(i); if(k == 1) { ans[index] = "CA"; }else if(k == 10){ ans[index] = "CT"; }else if(k == 11) { ans[index] = "CJ"; }else if(k == 12) { ans[index] = "CQ"; }else if(k == 13){ ans[index] = "CK"; }else { ans[index] = "C" + Integer.toString(k); } index ++; } for(int i = 0; i < listH.size(); i++) { int k = listH.get(i); if(k == 1) { ans[index] = "HA"; }else if(k == 10){ ans[index] = "HT"; }else if(k == 11) { ans[index] = "HJ"; }else if(k == 12) { ans[index] = "HQ"; }else if(k == 13){ ans[index] = "HK"; }else { ans[index] = "H" + Integer.toString(k); } index ++; } for(int i = 0; i < listS.size(); i++) { int k = listS.get(i); if(k == 1) { ans[index] = "SA"; }else if(k == 10){ ans[index] = "ST"; }else if(k == 11) { ans[index] = "SJ"; }else if(k == 12) { ans[index] = "SQ"; }else if(k == 13){ ans[index] = "SK"; }else { ans[index] = "S" + Integer.toString(k); } index ++; } for(int i = 0; i < l - 1; i++) { System.out.print(ans[i] + " "); } System.out.println(ans[l - 1]); } }