結果

問題 No.583 鉄道同好会
ユーザー zerozero
提出日時 2017-10-30 03:06:34
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 7,099 ms
コンパイル使用メモリ 174,464 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-05-01 22:38:41
合計ジャッジ時間 13,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 4 ms
6,656 KB
testcase_11 AC 213 ms
25,216 KB
testcase_12 AC 258 ms
32,384 KB
testcase_13 AC 257 ms
32,384 KB
testcase_14 AC 254 ms
32,384 KB
testcase_15 AC 355 ms
36,608 KB
testcase_16 AC 734 ms
65,280 KB
testcase_17 AC 915 ms
73,472 KB
testcase_18 AC 935 ms
74,368 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

ソースコード

diff #

import Control.Monad (replicateM)
import Data.List

main = do
  [n, m] <- getInts
  r <- judge . concat <$> replicateM m getInts
  putStrLn (yesno r)

getInts :: IO [Int]
getInts = map read . words <$> getLine

judge :: [Int] -> Bool
judge = (\x -> x == 0 || x == 2) . count odd . map length . group . sort

count :: (a -> Bool) -> [a] -> Int
count p = length . filter p

yesno :: Bool -> String
yesno True  = "YES"
yesno False = "NO"
0