結果

問題 No.2714 Amaou
ユーザー ducktail
提出日時 2024-04-27 19:17:36
言語 Haskell
(9.10.1)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 172,928 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-16 00:14:34
合計ジャッジ時間 3,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 26
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

ソースコード

diff #

import Control.Monad
import Data.List(sort)

main :: IO ()
main = do
  n <- readLn
  solve <$> replicateM n f >>= print
  where
    f = words <$> getLine

solve :: [[String]] -> Int
solve = foldl f 0
  where
    f ct l = if sort l == ["akai", "marui", "okii", "umai"] then ct + 1 else ct
0