結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | aimy |
提出日時 | 2017-05-01 08:22:22 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 308 ms / 5,000 ms |
コード長 | 388 bytes |
コンパイル時間 | 8,994 ms |
コンパイル使用メモリ | 179,460 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-09-14 01:46:06 |
合計ジャッジ時間 | 11,071 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 272 ms
8,064 KB |
testcase_01 | AC | 298 ms
8,064 KB |
testcase_02 | AC | 139 ms
7,936 KB |
testcase_03 | AC | 308 ms
8,064 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.Monad import Data.Ord import Data.List main = do t <- readLn replicateM_ t $ do getLine ls <- map read . words <$> getLine :: IO [Integer] print (kadomatsu ls) kadomatsu = length . unfoldr take3 . sort' . group . sort where sort' = sortBy (flip (comparing length)) take3 ((_:ls1):(_:ls2):(_:ls3):lss) = Just ((), sort' (ls1:ls2:ls3:lss)) take3 _ = Nothing