結果
問題 | No.267 トランプソート |
ユーザー | ducktail |
提出日時 | 2018-05-26 15:58:27 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 865 bytes |
コンパイル時間 | 9,087 ms |
コンパイル使用メモリ | 186,880 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 18:11:42 |
合計ジャッジ時間 | 10,138 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 3 ms
6,944 KB |
testcase_17 | AC | 3 ms
6,944 KB |
testcase_18 | AC | 3 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 3 ms
6,944 KB |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
import Control.Applicative ((<$>)) import Data.List (sort, intercalate) main :: IO () main = getLine >> solve <$> (words <$> getLine) >>= putStrLn solve :: [String] -> String solve = intercalate " " . map show . sort . map toTramp data Mark = D | C | H | S deriving (Eq, Ord, Show, Read) data Value = Value Int deriving (Eq, Ord) data Tramp = Tramp Mark Value deriving (Eq, Ord) instance Show Value where show (Value 1) = "A" show (Value 10) = "T" show (Value 11) = "J" show (Value 12) = "Q" show (Value 13) = "K" show (Value x) = show x instance Show Tramp where show (Tramp m v) = show m ++ show v toValue :: String -> Value toValue "A" = Value 1 toValue "T" = Value 10 toValue "J" = Value 11 toValue "Q" = Value 12 toValue "K" = Value 13 toValue x = Value (read x) toTramp :: String -> Tramp toTramp [m,v] = Tramp (read [m]) (toValue [v])