結果

問題 No.267 トランプソート
ユーザー 👑 KazunKazun
提出日時 2020-06-11 00:59:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 435 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-06-23 21:21:30
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,092 KB
testcase_01 AC 37 ms
54,152 KB
testcase_02 AC 37 ms
52,900 KB
testcase_03 AC 37 ms
53,384 KB
testcase_04 AC 37 ms
53,380 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
53,240 KB
testcase_07 AC 37 ms
51,876 KB
testcase_08 AC 37 ms
53,816 KB
testcase_09 AC 37 ms
52,184 KB
testcase_10 AC 37 ms
52,188 KB
testcase_11 AC 38 ms
52,396 KB
testcase_12 AC 37 ms
52,456 KB
testcase_13 AC 38 ms
52,800 KB
testcase_14 AC 38 ms
52,988 KB
testcase_15 AC 38 ms
53,524 KB
testcase_16 AC 38 ms
53,428 KB
testcase_17 AC 38 ms
52,464 KB
testcase_18 AC 38 ms
54,020 KB
testcase_19 AC 37 ms
52,752 KB
testcase_20 AC 37 ms
53,740 KB
testcase_21 AC 37 ms
53,136 KB
testcase_22 AC 37 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(s):
    if s[0]=="D":
        t=0
    elif s[0]=="C":
        t=100
    elif s[0]=="H":
        t=200
    else:
        t=300

    if s[1]=="A":
        t+=1
    elif s[1]=="T":
        t+=10
    elif s[1]=="J":
        t+=11
    elif s[1]=="Q":
        t+=12
    elif s[1]=="K":
        t+=13
    else:
        t+=int(s[1])

    return t

N=int(input())
A=input().split()
A.sort(key=f)

for a in A:
    print(a,end=" ")
print()
0