結果
問題 | No.267 トランプソート |
ユーザー | tenten |
提出日時 | 2022-07-29 16:05:09 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 58 ms / 1,000 ms |
コード長 | 1,944 bytes |
コンパイル時間 | 2,348 ms |
コンパイル使用メモリ | 79,688 KB |
実行使用メモリ | 37,268 KB |
最終ジャッジ日時 | 2024-07-19 07:19:20 |
合計ジャッジ時間 | 4,605 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
37,008 KB |
testcase_01 | AC | 54 ms
36,568 KB |
testcase_02 | AC | 54 ms
36,816 KB |
testcase_03 | AC | 55 ms
36,752 KB |
testcase_04 | AC | 52 ms
36,992 KB |
testcase_05 | AC | 55 ms
36,952 KB |
testcase_06 | AC | 58 ms
36,648 KB |
testcase_07 | AC | 56 ms
37,156 KB |
testcase_08 | AC | 56 ms
36,640 KB |
testcase_09 | AC | 57 ms
37,136 KB |
testcase_10 | AC | 56 ms
37,152 KB |
testcase_11 | AC | 56 ms
36,584 KB |
testcase_12 | AC | 55 ms
37,084 KB |
testcase_13 | AC | 55 ms
36,624 KB |
testcase_14 | AC | 54 ms
36,952 KB |
testcase_15 | AC | 56 ms
36,940 KB |
testcase_16 | AC | 55 ms
37,120 KB |
testcase_17 | AC | 56 ms
36,864 KB |
testcase_18 | AC | 56 ms
36,776 KB |
testcase_19 | AC | 57 ms
37,120 KB |
testcase_20 | AC | 55 ms
37,268 KB |
testcase_21 | AC | 55 ms
36,492 KB |
testcase_22 | AC | 55 ms
37,088 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static HashMap<Character, Integer> change = new HashMap<>(); public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); String order = "A23456789TJQKDCHS"; int idx = 0; for (char c : order.toCharArray()) { change.put(c, idx++); } int n = sc.nextInt(); Card[] cards = new Card[n]; for (int i = 0; i < n; i++) { cards[i] = new Card(sc.next()); } Arrays.sort(cards); StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { if (i > 0) { sb.append(" "); } sb.append(cards[i]); } System.out.println(sb); } static class Card implements Comparable<Card> { String name; int value; public Card(String name) { this.name = name; value = change.get(name.charAt(0)) * 20 + change.get(name.charAt(1)); } public int compareTo(Card another) { return value - another.value; } public String toString() { return name; } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }