結果
問題 | No.267 トランプソート |
ユーザー | roiti46 |
提出日時 | 2015-08-22 00:02:43 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 11 ms / 1,000 ms |
コード長 | 309 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-07-18 12:22:42 |
合計ジャッジ時間 | 1,054 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
num = ["A", "2", "3", "4", "5", "6", "7", "8", "9", "T", "J", "Q", "K"] suit = ["D", "C", "H", "S"] N = int(raw_input()) mn = raw_input().split() ans = [] for s in suit: for n in num: card = s + n for c in mn: if card == c: ans.append(card) print " ".join(ans)