結果
問題 | No.291 黒い文字列 |
ユーザー | h_noson |
提出日時 | 2015-10-16 23:54:21 |
言語 | Haskell (9.8.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 691 bytes |
コンパイル時間 | 7,200 ms |
コンパイル使用メモリ | 172,928 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-07-22 06:40:52 |
合計ジャッジ時間 | 10,960 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,184 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_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 Data.Maybe import Data.List import Data.Array solve :: Array Int Int -> [Int] -> [Int] solve arr [] = return $ arr ! 4 solve arr (x:xs) = do i <- if x == 5 then 0 : filter (\i -> arr!(i-1) > 0) [1..4] else [x] if i == 0 then return . maximum $ solve (arr // [(0,arr!0+1)]) xs else if arr!(i-1) > 0 then return . maximum $ solve (arr // [(i-1,arr!(i-1)-1),(i,arr!i+1)]) xs else return . maximum $ solve arr xs main :: IO () main = do s <- map (\x -> fromMaybe 6 $ findIndex (== x) "KUROI?") . filter (`elem` "KUROI?") <$> getLine print . maximum $ solve (listArray (0,4) $ repeat 0) s