結果
問題 |
No.349 干支の置き物
|
ユーザー |
|
提出日時 | 2018-02-08 14:14:24 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 572 bytes |
コンパイル時間 | 6,927 ms |
コンパイル使用メモリ | 180,176 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 20:20:12 |
合計ジャッジ時間 | 7,492 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
コンパイルメッセージ
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 Control.Monad (replicateM) import Data.ByteString.Char8 (ByteString) import qualified Data.ByteString.Char8 as B import Data.List main :: IO () main = do n <- readLn solve n <$> replicateM n B.getLine >>= putStrLn solve :: Int -> [ByteString] -> String solve n ss = f 0 ls where ls = map length . group . sort $ ss f mx xs | null xs && mx == 0 = "YES" | null xs = "NO" | mx == 0 = f (m - 1) rs | otherwise = f (m - 1) (mx : rs) where m = maximum xs rs = delete m xs