結果

問題 No.267 トランプソート
ユーザー rocoderrocoder
提出日時 2017-08-02 03:43:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,012 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-19 08:14:32
合計ジャッジ時間 1,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#trump
def tran(st):
    if st=="D":
        return 0
    elif st=="C":
        return 1
    elif st=="H":
        return 2
    elif st=="S":
        return 3
    elif st=="A":
        return 1
    elif st=="T":
        return 10
    elif st=="J":
        return 11
    elif st=="Q":
        return 12
    elif st=="K":
        return 13
    else:
        return int(st)
def ka(nu):
    if nu==0:
        return "D"
    elif nu==1:
        return "C"
    elif nu==2:
        return "H"
    elif nu==3:
        return "S"
def tna(nu):
    if nu==1:
        return "A"
    elif nu==10:
        return "T"
    elif nu==11:
        return "J"
    elif nu==12:
        return "Q"
    elif nu==13:
        return "K"
    else:
        return str(nu)
    
N=int(input())
m=[i for i in input().split()]
#T=[["a"]*2]*N   T[0][i]=
for i in range(N):
    m[i]=list(m[i])
    for j in range(2):
        m[i][j]=tran(m[i][j])
m.sort()
R=""
for i in range(N):
    for j in range(2):
        R+=tna(m[i][j])
    R+=" "
print(R)
0