結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー aimyaimy
提出日時 2017-04-30 10:51:20
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 168,000 KB
実行使用メモリ 7,264 KB
最終ジャッジ日時 2023-10-11 23:32:26
合計ジャッジ時間 2,810 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
7,152 KB
testcase_02 AC 2 ms
6,976 KB
testcase_03 AC 3 ms
6,960 KB
testcase_04 AC 3 ms
7,076 KB
testcase_05 AC 2 ms
6,984 KB
testcase_06 AC 3 ms
7,012 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 3 ms
6,988 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
7,040 KB
testcase_23 WA -
testcase_24 AC 2 ms
7,052 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 2 ms
7,048 KB
testcase_29 AC 3 ms
7,008 KB
testcase_30 AC 2 ms
7,088 KB
testcase_31 AC 2 ms
7,000 KB
testcase_32 AC 2 ms
6,960 KB
testcase_33 AC 3 ms
7,052 KB
testcase_34 AC 3 ms
7,100 KB
testcase_35 AC 3 ms
7,056 KB
testcase_36 RE -
testcase_37 AC 2 ms
6,996 KB
testcase_38 AC 2 ms
7,036 KB
testcase_39 AC 3 ms
7,012 KB
testcase_40 AC 3 ms
7,100 KB
testcase_41 WA -
testcase_42 AC 2 ms
7,212 KB
testcase_43 AC 3 ms
7,152 KB
testcase_44 AC 3 ms
7,196 KB
testcase_45 AC 2 ms
7,064 KB
testcase_46 AC 2 ms
6,972 KB
testcase_47 AC 3 ms
7,040 KB
testcase_48 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Char
import Data.List
import Control.Monad

main = do
 d <- readLn
 cs <- map (\c -> if c=='o' then True else False) . filter isAlpha <$> getContents
 print (gw2 d cs)

gw2 :: Int -> [Bool] -> Int
gw2 d cs = maximum [chead, clast, maximum (0:cinter)]
 where
  chead = maximum $ map length $ filter head $ group $ replicate d True ++ cs
  clast = maximum $ map length $ filter head $ group $ cs ++ replicate d True
  cinter = do
   i <- [0 .. 14-d]
   let pat = replicate i False ++ replicate d True ++ replicate (14-(d+i)) False
   let cs' = zipWith (||) pat cs
   guard (length (filter id cs') == length (filter id cs) + d)
   return $ maximum $ (0:) $ map length $ filter head $ group cs'
0