結果

問題 No.267 トランプソート
ユーザー rlangevinrlangevin
提出日時 2023-01-14 13:24:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 646 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 55,420 KB
最終ジャッジ日時 2024-06-07 15:16:14
合計ジャッジ時間 2,243 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,016 KB
testcase_01 AC 41 ms
53,364 KB
testcase_02 AC 41 ms
55,164 KB
testcase_03 AC 40 ms
53,844 KB
testcase_04 AC 41 ms
54,184 KB
testcase_05 AC 41 ms
53,800 KB
testcase_06 AC 40 ms
54,552 KB
testcase_07 AC 40 ms
53,800 KB
testcase_08 AC 40 ms
53,872 KB
testcase_09 AC 40 ms
54,368 KB
testcase_10 AC 40 ms
53,880 KB
testcase_11 AC 41 ms
54,296 KB
testcase_12 AC 41 ms
54,536 KB
testcase_13 AC 40 ms
54,924 KB
testcase_14 AC 42 ms
55,420 KB
testcase_15 AC 41 ms
54,304 KB
testcase_16 AC 40 ms
53,728 KB
testcase_17 AC 41 ms
55,256 KB
testcase_18 AC 41 ms
53,960 KB
testcase_19 AC 42 ms
54,936 KB
testcase_20 AC 42 ms
53,652 KB
testcase_21 AC 41 ms
54,176 KB
testcase_22 AC 42 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def trump(n):
    if n == "A":
        return 1
    elif n =="T":
        return 10
    elif n == "J":
        return 11
    elif n == "Q":
        return 12
    elif n == "K":
        return 13
    else:
        return int(n)

N = int(input())
card = list(input().split())
D = defaultdict(list)
DD = dict()
for s in card:
    DD[trump(s[1])] = s[1]
    D[s[0]].append(trump(s[1]))
    
ans = []
for a in sorted(D["D"]):
    ans.append("D" + DD[a])
for a in sorted(D["C"]):
    ans.append("C" + DD[a])
for a in sorted(D["H"]):
    ans.append("H" + DD[a])
for a in sorted(D["S"]):
    ans.append("S" + DD[a])
print(*ans)
0